robotcode 0.89.1__tar.gz → 0.91.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.89.1 → robotcode-0.91.0}/CHANGELOG.md +34 -0
- {robotcode-0.89.1 → robotcode-0.91.0}/PKG-INFO +12 -12
- {robotcode-0.89.1 → robotcode-0.91.0}/pyproject.toml +11 -11
- robotcode-0.91.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.89.1/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.89.1 → robotcode-0.91.0}/.gitignore +0 -0
- {robotcode-0.89.1 → robotcode-0.91.0}/LICENSE.txt +0 -0
- {robotcode-0.89.1 → robotcode-0.91.0}/README.md +0 -0
- {robotcode-0.89.1 → robotcode-0.91.0}/hatch.toml +0 -0
- {robotcode-0.89.1 → robotcode-0.91.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.89.1 → robotcode-0.91.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.89.1 → robotcode-0.91.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.89.1 → robotcode-0.91.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.89.1 → robotcode-0.91.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.89.1 → robotcode-0.91.0}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,40 @@
|
|
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.91.0](https://github.com/robotcodedev/robotcode/compare/v0.90.0..v0.91.0) - 2024-09-27
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **vscode:** Tool menu stabilized ([de774fa](https://github.com/robotcodedev/robotcode/commit/de774fafa34269eb448b35fbf403ceb2cda04ed6))
|
10
|
+
- **vscode:** Correct handling when opening library in keywords view if keyword is loaded twice with a different alias ([ac23751](https://github.com/robotcodedev/robotcode/commit/ac23751087fc9051ace8345ebe58cda88d4eb891))
|
11
|
+
|
12
|
+
|
13
|
+
### Features
|
14
|
+
|
15
|
+
- **analyze:** Show messages for InvalidHeader and DeprecatedHeader for RF7 ([518aa12](https://github.com/robotcodedev/robotcode/commit/518aa127d57bfeaf3a0bd1cbfc034394f56f63cb))
|
16
|
+
- New command `RobotCode: Report Issue` ([94d1efa](https://github.com/robotcodedev/robotcode/commit/94d1efac4edeed7e6117a50448678254e8320c0c))
|
17
|
+
|
18
|
+
|
19
|
+
with this command you can report an issue directly from vscode to RobotCode's issue tracker
|
20
|
+
|
21
|
+
|
22
|
+
## [0.90.0](https://github.com/robotcodedev/robotcode/compare/v0.89.1..v0.90.0) - 2024-09-16
|
23
|
+
|
24
|
+
### Features
|
25
|
+
|
26
|
+
- Provide a language status icon and robot tools menu ([7ef83f3](https://github.com/robotcodedev/robotcode/commit/7ef83f3a5d70818ae8947d621ed765d0d3a65ce3))
|
27
|
+
|
28
|
+
|
29
|
+
Language Status Item:
|
30
|
+

|
31
|
+
|
32
|
+
RobotCode Tool Menu
|
33
|
+

|
34
|
+
|
35
|
+
A short Video:
|
36
|
+
https://github.com/user-attachments/assets/b6980485-d7ec-4f6c-88a0-7d1a4e65dc40
|
37
|
+
|
38
|
+
|
5
39
|
## [0.89.1](https://github.com/robotcodedev/robotcode/compare/v0.89.0..v0.89.1) - 2024-09-11
|
6
40
|
|
7
41
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.91.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
|
@@ -33,33 +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.
|
38
|
-
Requires-Dist: robotcode-robot==0.
|
36
|
+
Requires-Dist: robotcode-core==0.91.0
|
37
|
+
Requires-Dist: robotcode-plugin==0.91.0
|
38
|
+
Requires-Dist: robotcode-robot==0.91.0
|
39
39
|
Provides-Extra: all
|
40
40
|
Requires-Dist: docutils; extra == 'all'
|
41
41
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
42
42
|
Requires-Dist: rich; extra == 'all'
|
43
|
-
Requires-Dist: robotcode-analyze==0.
|
44
|
-
Requires-Dist: robotcode-debugger==0.
|
45
|
-
Requires-Dist: robotcode-language-server==0.
|
46
|
-
Requires-Dist: robotcode-runner==0.
|
43
|
+
Requires-Dist: robotcode-analyze==0.91.0; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-debugger==0.91.0; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-language-server==0.91.0; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-runner==0.91.0; extra == 'all'
|
47
47
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
48
48
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
49
49
|
Provides-Extra: analyze
|
50
|
-
Requires-Dist: robotcode-analyze==0.
|
50
|
+
Requires-Dist: robotcode-analyze==0.91.0; extra == 'analyze'
|
51
51
|
Provides-Extra: colored
|
52
52
|
Requires-Dist: rich; extra == 'colored'
|
53
53
|
Provides-Extra: debugger
|
54
|
-
Requires-Dist: robotcode-debugger==0.
|
54
|
+
Requires-Dist: robotcode-debugger==0.91.0; extra == 'debugger'
|
55
55
|
Provides-Extra: languageserver
|
56
|
-
Requires-Dist: robotcode-language-server==0.
|
56
|
+
Requires-Dist: robotcode-language-server==0.91.0; extra == 'languageserver'
|
57
57
|
Provides-Extra: lint
|
58
58
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
59
59
|
Provides-Extra: rest
|
60
60
|
Requires-Dist: docutils; extra == 'rest'
|
61
61
|
Provides-Extra: runner
|
62
|
-
Requires-Dist: robotcode-runner==0.
|
62
|
+
Requires-Dist: robotcode-runner==0.91.0; extra == 'runner'
|
63
63
|
Provides-Extra: tidy
|
64
64
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
65
65
|
Provides-Extra: yaml
|
@@ -50,9 +50,9 @@ classifiers = [
|
|
50
50
|
]
|
51
51
|
requires-python = ">=3.8"
|
52
52
|
dependencies = [
|
53
|
-
"robotcode-core==0.
|
54
|
-
"robotcode-plugin==0.
|
55
|
-
"robotcode-robot==0.
|
53
|
+
"robotcode-core==0.91.0",
|
54
|
+
"robotcode-plugin==0.91.0",
|
55
|
+
"robotcode-robot==0.91.0",
|
56
56
|
]
|
57
57
|
dynamic = ["version"]
|
58
58
|
|
@@ -70,20 +70,20 @@ robotcode = "robotcode.cli.__main__:main"
|
|
70
70
|
|
71
71
|
|
72
72
|
[project.optional-dependencies]
|
73
|
-
debugger = ["robotcode-debugger==0.
|
74
|
-
languageserver = ["robotcode-language-server==0.
|
75
|
-
runner = ["robotcode-runner==0.
|
76
|
-
analyze = ["robotcode-analyze==0.
|
73
|
+
debugger = ["robotcode-debugger==0.91.0"]
|
74
|
+
languageserver = ["robotcode-language-server==0.91.0"]
|
75
|
+
runner = ["robotcode-runner==0.91.0"]
|
76
|
+
analyze = ["robotcode-analyze==0.91.0"]
|
77
77
|
yaml = ["PyYAML>=5.4"]
|
78
78
|
lint = ["robotframework-robocop>=2.0.0"]
|
79
79
|
tidy = ["robotframework-tidy>=2.0.0"]
|
80
80
|
rest = ["docutils"]
|
81
81
|
colored = ["rich"]
|
82
82
|
all = [
|
83
|
-
"robotcode-debugger==0.
|
84
|
-
"robotcode-language-server==0.
|
85
|
-
"robotcode-runner==0.
|
86
|
-
"robotcode-analyze==0.
|
83
|
+
"robotcode-debugger==0.91.0",
|
84
|
+
"robotcode-language-server==0.91.0",
|
85
|
+
"robotcode-runner==0.91.0",
|
86
|
+
"robotcode-analyze==0.91.0",
|
87
87
|
"PyYAML>=5.4",
|
88
88
|
"robotframework-robocop>=2.0.0",
|
89
89
|
"robotframework-tidy>=2.0.0",
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.91.0"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.89.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
|