robotcode 0.69.0__tar.gz → 0.70.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {robotcode-0.69.0 → robotcode-0.70.0}/CHANGELOG.md +14 -0
- {robotcode-0.69.0 → robotcode-0.70.0}/PKG-INFO +10 -10
- {robotcode-0.69.0 → robotcode-0.70.0}/pyproject.toml +9 -9
- robotcode-0.70.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.69.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.69.0 → robotcode-0.70.0}/.gitignore +0 -0
- {robotcode-0.69.0 → robotcode-0.70.0}/LICENSE.txt +0 -0
- {robotcode-0.69.0 → robotcode-0.70.0}/README.md +0 -0
- {robotcode-0.69.0 → robotcode-0.70.0}/hatch.toml +0 -0
- {robotcode-0.69.0 → robotcode-0.70.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.69.0 → robotcode-0.70.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.69.0 → robotcode-0.70.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.69.0 → robotcode-0.70.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.69.0 → robotcode-0.70.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.69.0 → robotcode-0.70.0}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,20 @@
|
|
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.70.0](https://github.com/d-biehl/robotcode/compare/v0.69.0..v0.70.0) - 2024-01-26
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **analyzer:** Correct resolving variables declared with the new VAR statement and a scope ([a259ec6](https://github.com/d-biehl/robotcode/commit/a259ec6bbc1c8ae4ae2d5169e4f7df184292cc82))
|
10
|
+
- **debugger:** Fix some things in debugger to better support Robot Framework version 7.0 ([a81695c](https://github.com/d-biehl/robotcode/commit/a81695c617c41d6e257c5fafee92fd746431a698))
|
11
|
+
- **langserver:** Correct minimum robot version in version check ([f33c80a](https://github.com/d-biehl/robotcode/commit/f33c80a730b49667ef5f463733bd32880f44e145))
|
12
|
+
|
13
|
+
|
14
|
+
### Features
|
15
|
+
|
16
|
+
- **vscode:** Simple drag'n drop keywords from keywords view to text editor ([6093387](https://github.com/d-biehl/robotcode/commit/60933878cb5c9b7ed2e46caab67ee32e073dc366))
|
17
|
+
|
18
|
+
|
5
19
|
## [0.69.0](https://github.com/d-biehl/robotcode/compare/v0.68.5..v0.69.0) - 2024-01-24
|
6
20
|
|
7
21
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.70.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,31 +33,31 @@ 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.
|
36
|
+
Requires-Dist: robotcode-core==0.70.0
|
37
37
|
Provides-Extra: all
|
38
38
|
Requires-Dist: docutils; extra == 'all'
|
39
39
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
40
40
|
Requires-Dist: rich; extra == 'all'
|
41
|
-
Requires-Dist: robotcode-analyze==0.
|
42
|
-
Requires-Dist: robotcode-debugger==0.
|
43
|
-
Requires-Dist: robotcode-language-server==0.
|
44
|
-
Requires-Dist: robotcode-runner==0.
|
41
|
+
Requires-Dist: robotcode-analyze==0.70.0; extra == 'all'
|
42
|
+
Requires-Dist: robotcode-debugger==0.70.0; extra == 'all'
|
43
|
+
Requires-Dist: robotcode-language-server==0.70.0; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-runner==0.70.0; extra == 'all'
|
45
45
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
46
46
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
47
47
|
Provides-Extra: analyze
|
48
|
-
Requires-Dist: robotcode-analyze==0.
|
48
|
+
Requires-Dist: robotcode-analyze==0.70.0; extra == 'analyze'
|
49
49
|
Provides-Extra: colored
|
50
50
|
Requires-Dist: rich; extra == 'colored'
|
51
51
|
Provides-Extra: debugger
|
52
|
-
Requires-Dist: robotcode-debugger==0.
|
52
|
+
Requires-Dist: robotcode-debugger==0.70.0; extra == 'debugger'
|
53
53
|
Provides-Extra: languageserver
|
54
|
-
Requires-Dist: robotcode-language-server==0.
|
54
|
+
Requires-Dist: robotcode-language-server==0.70.0; extra == 'languageserver'
|
55
55
|
Provides-Extra: lint
|
56
56
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
57
57
|
Provides-Extra: rest
|
58
58
|
Requires-Dist: docutils; extra == 'rest'
|
59
59
|
Provides-Extra: runner
|
60
|
-
Requires-Dist: robotcode-runner==0.
|
60
|
+
Requires-Dist: robotcode-runner==0.70.0; extra == 'runner'
|
61
61
|
Provides-Extra: tidy
|
62
62
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
63
63
|
Provides-Extra: yaml
|
@@ -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.70.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.70.0"]
|
70
|
+
languageserver = ["robotcode-language-server==0.70.0"]
|
71
|
+
runner = ["robotcode-runner==0.70.0"]
|
72
|
+
analyze = ["robotcode-analyze==0.70.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.70.0",
|
80
|
+
"robotcode-language-server==0.70.0",
|
81
|
+
"robotcode-runner==0.70.0",
|
82
|
+
"robotcode-analyze==0.70.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.70.0"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.69.0"
|
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
|