robotcode 0.77.1__tar.gz → 0.78.1__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {robotcode-0.77.1 → robotcode-0.78.1}/CHANGELOG.md +29 -0
- {robotcode-0.77.1 → robotcode-0.78.1}/PKG-INFO +12 -12
- {robotcode-0.77.1 → robotcode-0.78.1}/README.md +1 -1
- {robotcode-0.77.1 → robotcode-0.78.1}/pyproject.toml +9 -9
- robotcode-0.78.1/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.77.1/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.77.1 → robotcode-0.78.1}/.gitignore +0 -0
- {robotcode-0.77.1 → robotcode-0.78.1}/LICENSE.txt +0 -0
- {robotcode-0.77.1 → robotcode-0.78.1}/hatch.toml +0 -0
- {robotcode-0.77.1 → robotcode-0.78.1}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.77.1 → robotcode-0.78.1}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.77.1 → robotcode-0.78.1}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.77.1 → robotcode-0.78.1}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.77.1 → robotcode-0.78.1}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.77.1 → robotcode-0.78.1}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,35 @@
|
|
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.78.1](https://github.com/d-biehl/robotcode/compare/v0.78.0..v0.78.1) - 2024-03-15
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **analyze:** If a imported resource has import errors it is shown as releated information ([caf8541](https://github.com/d-biehl/robotcode/commit/caf8541c76e98bbd3ece931be31e00b388634d3a))
|
10
|
+
- **langserver:** Hovering over `EMPTY` builtin variable respects the type and shows correct empty values ([c8b66c8](https://github.com/d-biehl/robotcode/commit/c8b66c8fcd05d18ee1d27b79f20bc8d2ff51dc44))
|
11
|
+
- **profiles:** Profiles inherited by `[profile].inherit` are now merged before the parent profile, unless the `precedence` is set and are only enabled if the parent profile is enabled ([318d780](https://github.com/d-biehl/robotcode/commit/318d780d9e04b7cfae42a1616af76af56317b320))
|
12
|
+
|
13
|
+
|
14
|
+
## [0.78.0](https://github.com/d-biehl/robotcode/compare/v0.77.1..v0.78.0) - 2024-03-07
|
15
|
+
|
16
|
+
### Bug Fixes
|
17
|
+
|
18
|
+
- **vscode:** Some corrections in environment variable highlightning ([8936bfb](https://github.com/d-biehl/robotcode/commit/8936bfbabfef3b35811db32a757e577010c78e6f))
|
19
|
+
|
20
|
+
|
21
|
+
### Features
|
22
|
+
|
23
|
+
- **vscode:** Python syntax highlightning in IF and WHILE statements ([c56def3](https://github.com/d-biehl/robotcode/commit/c56def3577d1e3024f747695119e5ed6e508d200))
|
24
|
+
|
25
|
+
implements a part of #230
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
### Testing
|
30
|
+
|
31
|
+
- Fix some regression tests ([6001e30](https://github.com/d-biehl/robotcode/commit/6001e30a1a2e5c3dfb20aeab54ebe6f3dc95f203))
|
32
|
+
|
33
|
+
|
5
34
|
## [0.77.1](https://github.com/d-biehl/robotcode/compare/v0.77.0..v0.77.1) - 2024-03-06
|
6
35
|
|
7
36
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.78.1
|
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.78.1
|
37
|
+
Requires-Dist: robotcode-plugin==0.78.1
|
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.78.1; extra == 'all'
|
43
|
+
Requires-Dist: robotcode-debugger==0.78.1; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-language-server==0.78.1; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-runner==0.78.1; 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.78.1; 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.78.1; extra == 'debugger'
|
54
54
|
Provides-Extra: languageserver
|
55
|
-
Requires-Dist: robotcode-language-server==0.
|
55
|
+
Requires-Dist: robotcode-language-server==0.78.1; 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.78.1; extra == 'runner'
|
62
62
|
Provides-Extra: tidy
|
63
63
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
64
64
|
Provides-Extra: yaml
|
@@ -281,7 +281,7 @@ put this to the `settings.json`
|
|
281
281
|
}
|
282
282
|
},
|
283
283
|
{
|
284
|
-
"scope": "variable.
|
284
|
+
"scope": "variable.name.readwrite.robotframework",
|
285
285
|
"settings": {
|
286
286
|
//"fontStyle": "italic",
|
287
287
|
}
|
@@ -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.78.1", "robotcode-plugin==0.78.1"]
|
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.78.1"]
|
70
|
+
languageserver = ["robotcode-language-server==0.78.1"]
|
71
|
+
runner = ["robotcode-runner==0.78.1"]
|
72
|
+
analyze = ["robotcode-analyze==0.78.1"]
|
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.78.1",
|
80
|
+
"robotcode-language-server==0.78.1",
|
81
|
+
"robotcode-runner==0.78.1",
|
82
|
+
"robotcode-analyze==0.78.1",
|
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.78.1"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.77.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
|