robotcode 0.78.2__tar.gz → 0.79.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {robotcode-0.78.2 → robotcode-0.79.0}/CHANGELOG.md +33 -0
- {robotcode-0.78.2 → robotcode-0.79.0}/PKG-INFO +12 -11
- {robotcode-0.78.2 → robotcode-0.79.0}/pyproject.toml +15 -11
- robotcode-0.79.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.78.2/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.78.2 → robotcode-0.79.0}/.gitignore +0 -0
- {robotcode-0.78.2 → robotcode-0.79.0}/LICENSE.txt +0 -0
- {robotcode-0.78.2 → robotcode-0.79.0}/README.md +0 -0
- {robotcode-0.78.2 → robotcode-0.79.0}/hatch.toml +0 -0
- {robotcode-0.78.2 → robotcode-0.79.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.78.2 → robotcode-0.79.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.78.2 → robotcode-0.79.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.78.2 → robotcode-0.79.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.78.2 → robotcode-0.79.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.78.2 → robotcode-0.79.0}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,39 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
4
4
|
|
5
|
+
## [0.79.0](https://github.com/d-biehl/robotcode/compare/v0.78.4..v0.79.0) - 2024-04-21
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **debugger:** Don't show a message on unsupported rpc commands ([504e091](https://github.com/d-biehl/robotcode/commit/504e091954b053288701d8b729a9ae2609ed73cc))
|
10
|
+
- **langserver:** Normalize path handling should not fully resolve symlinks ([0c0198a](https://github.com/d-biehl/robotcode/commit/0c0198a99374cea5d6801b8590292bef06e87073))
|
11
|
+
|
12
|
+
|
13
|
+
### Features
|
14
|
+
|
15
|
+
- **langserver:** Highlight some formatting tags in documentation like bold and italics for englisch language ([4d2cdae](https://github.com/d-biehl/robotcode/commit/4d2cdae250d797d816366a723eeb56d4e93519a4))
|
16
|
+
- **vscode:** Add option to disable the vscodes test explorer/execution integration ([9332099](https://github.com/d-biehl/robotcode/commit/93320995e4cb206e42339247d55c78f9fd327916))
|
17
|
+
|
18
|
+
|
19
|
+
### Testing
|
20
|
+
|
21
|
+
- **langserver:** Update regression tests ([4fab1d1](https://github.com/d-biehl/robotcode/commit/4fab1d1abad6d637ea054ee71d6e4dac836fd85e))
|
22
|
+
|
23
|
+
|
24
|
+
## [0.78.4](https://github.com/d-biehl/robotcode/compare/v0.78.3..v0.78.4) - 2024-03-20
|
25
|
+
|
26
|
+
### Bug Fixes
|
27
|
+
|
28
|
+
- **robotcode:** Add missing `robotcode-robot` dependency ([d9cea02](https://github.com/d-biehl/robotcode/commit/d9cea026d5f28773f1951b4717e014c0e17e15d0))
|
29
|
+
|
30
|
+
|
31
|
+
## [0.78.3](https://github.com/d-biehl/robotcode/compare/v0.78.2..v0.78.3) - 2024-03-20
|
32
|
+
|
33
|
+
### Bug Fixes
|
34
|
+
|
35
|
+
- **langserver:** Add missing `robotcode-robot` dependency ([2d1c99d](https://github.com/d-biehl/robotcode/commit/2d1c99d3cdeef9681f3bbeb4fc4f5df0f5d6de93))
|
36
|
+
|
37
|
+
|
5
38
|
## [0.78.2](https://github.com/d-biehl/robotcode/compare/v0.78.1..v0.78.2) - 2024-03-19
|
6
39
|
|
7
40
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.79.0
|
4
4
|
Summary: Command line interface for RobotCode
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
6
6
|
Project-URL: Donate, https://github.com/sponsors/d-biehl
|
@@ -33,32 +33,33 @@ Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
|
|
33
33
|
Classifier: Topic :: Utilities
|
34
34
|
Classifier: Typing :: Typed
|
35
35
|
Requires-Python: >=3.8
|
36
|
-
Requires-Dist: robotcode-core==0.
|
37
|
-
Requires-Dist: robotcode-plugin==0.
|
36
|
+
Requires-Dist: robotcode-core==0.79.0
|
37
|
+
Requires-Dist: robotcode-plugin==0.79.0
|
38
|
+
Requires-Dist: robotcode-robot==0.79.0
|
38
39
|
Provides-Extra: all
|
39
40
|
Requires-Dist: docutils; extra == 'all'
|
40
41
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
41
42
|
Requires-Dist: rich; extra == 'all'
|
42
|
-
Requires-Dist: robotcode-analyze==0.
|
43
|
-
Requires-Dist: robotcode-debugger==0.
|
44
|
-
Requires-Dist: robotcode-language-server==0.
|
45
|
-
Requires-Dist: robotcode-runner==0.
|
43
|
+
Requires-Dist: robotcode-analyze==0.79.0; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-debugger==0.79.0; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-language-server==0.79.0; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-runner==0.79.0; extra == 'all'
|
46
47
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
47
48
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
48
49
|
Provides-Extra: analyze
|
49
|
-
Requires-Dist: robotcode-analyze==0.
|
50
|
+
Requires-Dist: robotcode-analyze==0.79.0; extra == 'analyze'
|
50
51
|
Provides-Extra: colored
|
51
52
|
Requires-Dist: rich; extra == 'colored'
|
52
53
|
Provides-Extra: debugger
|
53
|
-
Requires-Dist: robotcode-debugger==0.
|
54
|
+
Requires-Dist: robotcode-debugger==0.79.0; extra == 'debugger'
|
54
55
|
Provides-Extra: languageserver
|
55
|
-
Requires-Dist: robotcode-language-server==0.
|
56
|
+
Requires-Dist: robotcode-language-server==0.79.0; extra == 'languageserver'
|
56
57
|
Provides-Extra: lint
|
57
58
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
58
59
|
Provides-Extra: rest
|
59
60
|
Requires-Dist: docutils; extra == 'rest'
|
60
61
|
Provides-Extra: runner
|
61
|
-
Requires-Dist: robotcode-runner==0.
|
62
|
+
Requires-Dist: robotcode-runner==0.79.0; extra == 'runner'
|
62
63
|
Provides-Extra: tidy
|
63
64
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
64
65
|
Provides-Extra: yaml
|
@@ -49,7 +49,11 @@ classifiers = [
|
|
49
49
|
"Framework :: Robot Framework :: Tool",
|
50
50
|
]
|
51
51
|
requires-python = ">=3.8"
|
52
|
-
dependencies = [
|
52
|
+
dependencies = [
|
53
|
+
"robotcode-core==0.79.0",
|
54
|
+
"robotcode-plugin==0.79.0",
|
55
|
+
"robotcode-robot==0.79.0",
|
56
|
+
]
|
53
57
|
dynamic = ["version"]
|
54
58
|
|
55
59
|
|
@@ -66,20 +70,20 @@ robotcode = "robotcode.cli.__main__:main"
|
|
66
70
|
|
67
71
|
|
68
72
|
[project.optional-dependencies]
|
69
|
-
debugger = ["robotcode-debugger==0.
|
70
|
-
languageserver = ["robotcode-language-server==0.
|
71
|
-
runner = ["robotcode-runner==0.
|
72
|
-
analyze = ["robotcode-analyze==0.
|
73
|
+
debugger = ["robotcode-debugger==0.79.0"]
|
74
|
+
languageserver = ["robotcode-language-server==0.79.0"]
|
75
|
+
runner = ["robotcode-runner==0.79.0"]
|
76
|
+
analyze = ["robotcode-analyze==0.79.0"]
|
73
77
|
yaml = ["PyYAML>=5.4"]
|
74
78
|
lint = ["robotframework-robocop>=2.0.0"]
|
75
79
|
tidy = ["robotframework-tidy>=2.0.0"]
|
76
80
|
rest = ["docutils"]
|
77
81
|
colored = ["rich"]
|
78
82
|
all = [
|
79
|
-
"robotcode-debugger==0.
|
80
|
-
"robotcode-language-server==0.
|
81
|
-
"robotcode-runner==0.
|
82
|
-
"robotcode-analyze==0.
|
83
|
+
"robotcode-debugger==0.79.0",
|
84
|
+
"robotcode-language-server==0.79.0",
|
85
|
+
"robotcode-runner==0.79.0",
|
86
|
+
"robotcode-analyze==0.79.0",
|
83
87
|
"PyYAML>=5.4",
|
84
88
|
"robotframework-robocop>=2.0.0",
|
85
89
|
"robotframework-tidy>=2.0.0",
|
@@ -229,6 +233,8 @@ implicit_reexport = false
|
|
229
233
|
implicit_optional = true
|
230
234
|
disallow_untyped_decorators = false
|
231
235
|
disallow_subclassing_any = false
|
236
|
+
explicit_package_bases = true
|
237
|
+
namespace_packages = true
|
232
238
|
exclude = [
|
233
239
|
'^\.mypy_cache/',
|
234
240
|
'^\.venv/',
|
@@ -253,8 +259,6 @@ mypy_path = [
|
|
253
259
|
"packages/runner/src",
|
254
260
|
"packages/analyze/src",
|
255
261
|
]
|
256
|
-
explicit_package_bases = true
|
257
|
-
namespace_packages = true
|
258
262
|
# allow_untyped_calls = true
|
259
263
|
|
260
264
|
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.79.0"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.78.2"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|