robotcode 0.76.2__tar.gz → 0.77.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {robotcode-0.76.2 → robotcode-0.77.0}/CHANGELOG.md +22 -0
- {robotcode-0.76.2 → robotcode-0.77.0}/PKG-INFO +11 -11
- {robotcode-0.76.2 → robotcode-0.77.0}/hatch.toml +7 -4
- {robotcode-0.76.2 → robotcode-0.77.0}/pyproject.toml +9 -9
- robotcode-0.77.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.76.2/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.76.2 → robotcode-0.77.0}/.gitignore +0 -0
- {robotcode-0.76.2 → robotcode-0.77.0}/LICENSE.txt +0 -0
- {robotcode-0.76.2 → robotcode-0.77.0}/README.md +0 -0
- {robotcode-0.76.2 → robotcode-0.77.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.76.2 → robotcode-0.77.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.76.2 → robotcode-0.77.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.76.2 → robotcode-0.77.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.76.2 → robotcode-0.77.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.76.2 → robotcode-0.77.0}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,28 @@
|
|
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.77.0](https://github.com/d-biehl/robotcode/compare/v0.76.2..v0.77.0) - 2024-03-05
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **diagnostics:** Resolving variables does not work for builtin vars at library import ([6b97730](https://github.com/d-biehl/robotcode/commit/6b97730f1791482a9ca9e5dee847cf6a240c98e2))
|
10
|
+
|
11
|
+
|
12
|
+
### Features
|
13
|
+
|
14
|
+
- **vscode:** Enable bracket coloring and matching in keyword arguments ([45243e5](https://github.com/d-biehl/robotcode/commit/45243e589ce44274aae58186071dbf271392d408))
|
15
|
+
- **vscode:** Python syntax highlightning in `${{}}` expressions ([adf3627](https://github.com/d-biehl/robotcode/commit/adf36270ab7d39028ee1684e438cc42694af5e67))
|
16
|
+
|
17
|
+
this implements a part of #230
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
### Testing
|
22
|
+
|
23
|
+
- Update regression some tests ([f01d37e](https://github.com/d-biehl/robotcode/commit/f01d37e42bd9ceab040ff0a3bb4e635902073a51))
|
24
|
+
- Fix some regression tests ([cb420ad](https://github.com/d-biehl/robotcode/commit/cb420adb5f7384ebaf9e5f562b4356c5600721f0))
|
25
|
+
|
26
|
+
|
5
27
|
## [0.76.2](https://github.com/d-biehl/robotcode/compare/v0.76.1..v0.76.2) - 2024-03-01
|
6
28
|
|
7
29
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.77.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,32 @@ 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.77.0
|
37
|
+
Requires-Dist: robotcode-plugin==0.77.0
|
38
38
|
Provides-Extra: all
|
39
39
|
Requires-Dist: docutils; extra == 'all'
|
40
40
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
41
41
|
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.
|
42
|
+
Requires-Dist: robotcode-analyze==0.77.0; extra == 'all'
|
43
|
+
Requires-Dist: robotcode-debugger==0.77.0; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-language-server==0.77.0; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-runner==0.77.0; extra == 'all'
|
46
46
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
47
47
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
48
48
|
Provides-Extra: analyze
|
49
|
-
Requires-Dist: robotcode-analyze==0.
|
49
|
+
Requires-Dist: robotcode-analyze==0.77.0; extra == 'analyze'
|
50
50
|
Provides-Extra: colored
|
51
51
|
Requires-Dist: rich; extra == 'colored'
|
52
52
|
Provides-Extra: debugger
|
53
|
-
Requires-Dist: robotcode-debugger==0.
|
53
|
+
Requires-Dist: robotcode-debugger==0.77.0; extra == 'debugger'
|
54
54
|
Provides-Extra: languageserver
|
55
|
-
Requires-Dist: robotcode-language-server==0.
|
55
|
+
Requires-Dist: robotcode-language-server==0.77.0; extra == 'languageserver'
|
56
56
|
Provides-Extra: lint
|
57
57
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
58
58
|
Provides-Extra: rest
|
59
59
|
Requires-Dist: docutils; extra == 'rest'
|
60
60
|
Provides-Extra: runner
|
61
|
-
Requires-Dist: robotcode-runner==0.
|
61
|
+
Requires-Dist: robotcode-runner==0.77.0; extra == 'runner'
|
62
62
|
Provides-Extra: tidy
|
63
63
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
64
64
|
Provides-Extra: yaml
|
@@ -50,9 +50,7 @@ extra-dependencies = [
|
|
50
50
|
|
51
51
|
[envs.pypy]
|
52
52
|
python = "pypy3.10"
|
53
|
-
extra-dependencies = [
|
54
|
-
"robotframework==6.0",
|
55
|
-
]
|
53
|
+
extra-dependencies = ["robotframework==6.0"]
|
56
54
|
|
57
55
|
[envs.rfdevel]
|
58
56
|
python = "3.11"
|
@@ -166,7 +164,12 @@ deploy = ["python scripts/deploy_docs.py"]
|
|
166
164
|
skip-install = true
|
167
165
|
detached = true
|
168
166
|
python = "38"
|
169
|
-
dependencies = [
|
167
|
+
dependencies = [
|
168
|
+
"GitPython",
|
169
|
+
"semantic-version",
|
170
|
+
"commitizen",
|
171
|
+
"git-cliff==1.4.0"
|
172
|
+
]
|
170
173
|
|
171
174
|
[envs.build.scripts]
|
172
175
|
update-changelog = ["python scripts/update_changelog.py"]
|
@@ -49,7 +49,7 @@ classifiers = [
|
|
49
49
|
"Framework :: Robot Framework :: Tool",
|
50
50
|
]
|
51
51
|
requires-python = ">=3.8"
|
52
|
-
dependencies = ["robotcode-core==0.
|
52
|
+
dependencies = ["robotcode-core==0.77.0", "robotcode-plugin==0.77.0"]
|
53
53
|
dynamic = ["version"]
|
54
54
|
|
55
55
|
|
@@ -66,20 +66,20 @@ robotcode = "robotcode.cli.__main__:main"
|
|
66
66
|
|
67
67
|
|
68
68
|
[project.optional-dependencies]
|
69
|
-
debugger = ["robotcode-debugger==0.
|
70
|
-
languageserver = ["robotcode-language-server==0.
|
71
|
-
runner = ["robotcode-runner==0.
|
72
|
-
analyze = ["robotcode-analyze==0.
|
69
|
+
debugger = ["robotcode-debugger==0.77.0"]
|
70
|
+
languageserver = ["robotcode-language-server==0.77.0"]
|
71
|
+
runner = ["robotcode-runner==0.77.0"]
|
72
|
+
analyze = ["robotcode-analyze==0.77.0"]
|
73
73
|
yaml = ["PyYAML>=5.4"]
|
74
74
|
lint = ["robotframework-robocop>=2.0.0"]
|
75
75
|
tidy = ["robotframework-tidy>=2.0.0"]
|
76
76
|
rest = ["docutils"]
|
77
77
|
colored = ["rich"]
|
78
78
|
all = [
|
79
|
-
"robotcode-debugger==0.
|
80
|
-
"robotcode-language-server==0.
|
81
|
-
"robotcode-runner==0.
|
82
|
-
"robotcode-analyze==0.
|
79
|
+
"robotcode-debugger==0.77.0",
|
80
|
+
"robotcode-language-server==0.77.0",
|
81
|
+
"robotcode-runner==0.77.0",
|
82
|
+
"robotcode-analyze==0.77.0",
|
83
83
|
"PyYAML>=5.4",
|
84
84
|
"robotframework-robocop>=2.0.0",
|
85
85
|
"robotframework-tidy>=2.0.0",
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.77.0"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.76.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
|