robotcode 0.95.1__tar.gz → 0.96.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.95.1 → robotcode-0.96.0}/CHANGELOG.md +26 -0
- {robotcode-0.95.1 → robotcode-0.96.0}/PKG-INFO +14 -14
- {robotcode-0.95.1 → robotcode-0.96.0}/pyproject.toml +13 -13
- robotcode-0.96.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.95.1/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.95.1 → robotcode-0.96.0}/.gitignore +0 -0
- {robotcode-0.95.1 → robotcode-0.96.0}/LICENSE.txt +0 -0
- {robotcode-0.95.1 → robotcode-0.96.0}/README.md +0 -0
- {robotcode-0.95.1 → robotcode-0.96.0}/hatch.toml +0 -0
- {robotcode-0.95.1 → robotcode-0.96.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.95.1 → robotcode-0.96.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.95.1 → robotcode-0.96.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.95.1 → robotcode-0.96.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.95.1 → robotcode-0.96.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.95.1 → robotcode-0.96.0}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,32 @@
|
|
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.96.0](https://github.com/robotcodedev/robotcode/compare/v0.95.2..v0.96.0) - 2024-11-04
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **vscode:** Corrected tmlanguage to color variables in variables section ([0e32e41](https://github.com/robotcodedev/robotcode/commit/0e32e4123a0b5ae73055c1ebcf1a9e2d8bb5d8ab))
|
10
|
+
- Corrected hash calculation for keyword matchers for keywords with embedded arguments for RF < 7 ([c58f622](https://github.com/robotcodedev/robotcode/commit/c58f622f1493d49d5b87e476b99965e3d2c935e6))
|
11
|
+
|
12
|
+
|
13
|
+
### Features
|
14
|
+
|
15
|
+
- **analyze:** Add command line support for static analysis of Robot Framework projects ([01a4c6d](https://github.com/robotcodedev/robotcode/commit/01a4c6dddc2c7ce7f2d4e63e31a5e3a01cec69f4))
|
16
|
+
- **vscode:** Connect vscode testrun to the debug session to link the lifecycle to of the session to the ui actions of the test run ([0d3bd27](https://github.com/robotcodedev/robotcode/commit/0d3bd272df53905942723069acc2dc6511674d3c))
|
17
|
+
|
18
|
+
|
19
|
+
## [0.95.2](https://github.com/robotcodedev/robotcode/compare/v0.95.1..v0.95.2) - 2024-10-28
|
20
|
+
|
21
|
+
### Performance
|
22
|
+
|
23
|
+
- **analyzer:** Simplify generating of internal libdocs for resource files ([c232cea](https://github.com/robotcodedev/robotcode/commit/c232cea29672fc30eaf7a7e6ce08ee0ed8283968))
|
24
|
+
|
25
|
+
|
26
|
+
### Refactor
|
27
|
+
|
28
|
+
- **all:** Some cache adjustments and removal of unnecessary code ([9b0999c](https://github.com/robotcodedev/robotcode/commit/9b0999cc4425d84fb20c6c81b0e63b1939abebe7))
|
29
|
+
|
30
|
+
|
5
31
|
## [0.95.1](https://github.com/robotcodedev/robotcode/compare/v0.95.0..v0.95.1) - 2024-10-26
|
6
32
|
|
7
33
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.96.0
|
4
4
|
Summary: Command line interface for RobotCode
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
6
6
|
Project-URL: Donate, https://opencollective.com/robotcode
|
@@ -34,36 +34,36 @@ Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
|
|
34
34
|
Classifier: Topic :: Utilities
|
35
35
|
Classifier: Typing :: Typed
|
36
36
|
Requires-Python: >=3.8
|
37
|
-
Requires-Dist: robotcode-core==0.
|
38
|
-
Requires-Dist: robotcode-plugin==0.
|
39
|
-
Requires-Dist: robotcode-robot==0.
|
37
|
+
Requires-Dist: robotcode-core==0.96.0
|
38
|
+
Requires-Dist: robotcode-plugin==0.96.0
|
39
|
+
Requires-Dist: robotcode-robot==0.96.0
|
40
40
|
Provides-Extra: all
|
41
41
|
Requires-Dist: docutils; extra == 'all'
|
42
42
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
43
43
|
Requires-Dist: rich; extra == 'all'
|
44
|
-
Requires-Dist: robotcode-analyze==0.
|
45
|
-
Requires-Dist: robotcode-debugger==0.
|
46
|
-
Requires-Dist: robotcode-language-server==0.
|
47
|
-
Requires-Dist: robotcode-repl==0.
|
48
|
-
Requires-Dist: robotcode-runner==0.
|
44
|
+
Requires-Dist: robotcode-analyze==0.96.0; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-debugger==0.96.0; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-language-server==0.96.0; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-repl==0.96.0; extra == 'all'
|
48
|
+
Requires-Dist: robotcode-runner==0.96.0; extra == 'all'
|
49
49
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
50
50
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
51
51
|
Provides-Extra: analyze
|
52
|
-
Requires-Dist: robotcode-analyze==0.
|
52
|
+
Requires-Dist: robotcode-analyze==0.96.0; extra == 'analyze'
|
53
53
|
Provides-Extra: colored
|
54
54
|
Requires-Dist: rich; extra == 'colored'
|
55
55
|
Provides-Extra: debugger
|
56
|
-
Requires-Dist: robotcode-debugger==0.
|
56
|
+
Requires-Dist: robotcode-debugger==0.96.0; extra == 'debugger'
|
57
57
|
Provides-Extra: languageserver
|
58
|
-
Requires-Dist: robotcode-language-server==0.
|
58
|
+
Requires-Dist: robotcode-language-server==0.96.0; extra == 'languageserver'
|
59
59
|
Provides-Extra: lint
|
60
60
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
61
61
|
Provides-Extra: repl
|
62
|
-
Requires-Dist: robotcode-repl==0.
|
62
|
+
Requires-Dist: robotcode-repl==0.96.0; extra == 'repl'
|
63
63
|
Provides-Extra: rest
|
64
64
|
Requires-Dist: docutils; extra == 'rest'
|
65
65
|
Provides-Extra: runner
|
66
|
-
Requires-Dist: robotcode-runner==0.
|
66
|
+
Requires-Dist: robotcode-runner==0.96.0; extra == 'runner'
|
67
67
|
Provides-Extra: tidy
|
68
68
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
69
69
|
Provides-Extra: yaml
|
@@ -51,9 +51,9 @@ classifiers = [
|
|
51
51
|
]
|
52
52
|
requires-python = ">=3.8"
|
53
53
|
dependencies = [
|
54
|
-
"robotcode-core==0.
|
55
|
-
"robotcode-plugin==0.
|
56
|
-
"robotcode-robot==0.
|
54
|
+
"robotcode-core==0.96.0",
|
55
|
+
"robotcode-plugin==0.96.0",
|
56
|
+
"robotcode-robot==0.96.0",
|
57
57
|
]
|
58
58
|
dynamic = ["version"]
|
59
59
|
|
@@ -71,22 +71,22 @@ robotcode = "robotcode.cli.__main__:main"
|
|
71
71
|
|
72
72
|
|
73
73
|
[project.optional-dependencies]
|
74
|
-
debugger = ["robotcode-debugger==0.
|
75
|
-
languageserver = ["robotcode-language-server==0.
|
76
|
-
runner = ["robotcode-runner==0.
|
77
|
-
analyze = ["robotcode-analyze==0.
|
74
|
+
debugger = ["robotcode-debugger==0.96.0"]
|
75
|
+
languageserver = ["robotcode-language-server==0.96.0"]
|
76
|
+
runner = ["robotcode-runner==0.96.0"]
|
77
|
+
analyze = ["robotcode-analyze==0.96.0"]
|
78
78
|
yaml = ["PyYAML>=5.4"]
|
79
79
|
lint = ["robotframework-robocop>=2.0.0"]
|
80
80
|
tidy = ["robotframework-tidy>=2.0.0"]
|
81
81
|
rest = ["docutils"]
|
82
|
-
repl = ["robotcode-repl==0.
|
82
|
+
repl = ["robotcode-repl==0.96.0"]
|
83
83
|
colored = ["rich"]
|
84
84
|
all = [
|
85
|
-
"robotcode-debugger==0.
|
86
|
-
"robotcode-language-server==0.
|
87
|
-
"robotcode-runner==0.
|
88
|
-
"robotcode-analyze==0.
|
89
|
-
"robotcode-repl==0.
|
85
|
+
"robotcode-debugger==0.96.0",
|
86
|
+
"robotcode-language-server==0.96.0",
|
87
|
+
"robotcode-runner==0.96.0",
|
88
|
+
"robotcode-analyze==0.96.0",
|
89
|
+
"robotcode-repl==0.96.0",
|
90
90
|
"PyYAML>=5.4",
|
91
91
|
"robotframework-robocop>=2.0.0",
|
92
92
|
"robotframework-tidy>=2.0.0",
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.96.0"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.95.1"
|
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
|