robotcode 1.6.0__tar.gz → 1.7.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-1.6.0 → robotcode-1.7.0}/CHANGELOG.md +17 -0
- {robotcode-1.6.0 → robotcode-1.7.0}/PKG-INFO +16 -16
- {robotcode-1.6.0 → robotcode-1.7.0}/pyproject.toml +16 -16
- robotcode-1.7.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-1.6.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-1.6.0 → robotcode-1.7.0}/.gitignore +0 -0
- {robotcode-1.6.0 → robotcode-1.7.0}/LICENSE.txt +0 -0
- {robotcode-1.6.0 → robotcode-1.7.0}/README.md +0 -0
- {robotcode-1.6.0 → robotcode-1.7.0}/hatch.toml +0 -0
- {robotcode-1.6.0 → robotcode-1.7.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-1.6.0 → robotcode-1.7.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-1.6.0 → robotcode-1.7.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-1.6.0 → robotcode-1.7.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-1.6.0 → robotcode-1.7.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-1.6.0 → robotcode-1.7.0}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,23 @@
|
|
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
|
+
## [1.7.0](https://github.com/robotcodedev/robotcode/compare/v1.6.0..v1.7.0) - 2025-07-31
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **diagnostics:** Correct overriding of imported variables in suite variables ([afed6db](https://github.com/robotcodedev/robotcode/commit/afed6db7cf9d5293b62a01eaaeba621517894ebd))
|
10
|
+
|
11
|
+
|
12
|
+
### Features
|
13
|
+
|
14
|
+
- **docs:** Add generated llms.txt and llms-full.txt to website ([1f23559](https://github.com/robotcodedev/robotcode/commit/1f23559ff9f26cb2dd9977c001b883493f1f32b4))
|
15
|
+
|
16
|
+
|
17
|
+
### Refactor
|
18
|
+
|
19
|
+
- **jsonrpc:** Fix some spellings and split up some methods ([3c71ce6](https://github.com/robotcodedev/robotcode/commit/3c71ce64f8a797a4f0db925c2379800a3e48a987))
|
20
|
+
|
21
|
+
|
5
22
|
## [1.6.0](https://github.com/robotcodedev/robotcode/compare/v1.5.0..v1.6.0) - 2025-07-30
|
6
23
|
|
7
24
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: robotcode
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.7.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,38 +34,38 @@ 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==1.
|
38
|
-
Requires-Dist: robotcode-plugin==1.
|
39
|
-
Requires-Dist: robotcode-robot==1.
|
37
|
+
Requires-Dist: robotcode-core==1.7.0
|
38
|
+
Requires-Dist: robotcode-plugin==1.7.0
|
39
|
+
Requires-Dist: robotcode-robot==1.7.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==1.
|
45
|
-
Requires-Dist: robotcode-debugger==1.
|
46
|
-
Requires-Dist: robotcode-language-server==1.
|
47
|
-
Requires-Dist: robotcode-repl-server==1.
|
48
|
-
Requires-Dist: robotcode-repl==1.
|
49
|
-
Requires-Dist: robotcode-runner==1.
|
44
|
+
Requires-Dist: robotcode-analyze==1.7.0; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-debugger==1.7.0; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-language-server==1.7.0; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-repl-server==1.7.0; extra == 'all'
|
48
|
+
Requires-Dist: robotcode-repl==1.7.0; extra == 'all'
|
49
|
+
Requires-Dist: robotcode-runner==1.7.0; extra == 'all'
|
50
50
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
51
51
|
Provides-Extra: analyze
|
52
|
-
Requires-Dist: robotcode-analyze==1.
|
52
|
+
Requires-Dist: robotcode-analyze==1.7.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==1.
|
56
|
+
Requires-Dist: robotcode-debugger==1.7.0; extra == 'debugger'
|
57
57
|
Provides-Extra: languageserver
|
58
|
-
Requires-Dist: robotcode-language-server==1.
|
58
|
+
Requires-Dist: robotcode-language-server==1.7.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==1.
|
62
|
+
Requires-Dist: robotcode-repl==1.7.0; extra == 'repl'
|
63
63
|
Provides-Extra: replserver
|
64
|
-
Requires-Dist: robotcode-repl-server==1.
|
64
|
+
Requires-Dist: robotcode-repl-server==1.7.0; extra == 'replserver'
|
65
65
|
Provides-Extra: rest
|
66
66
|
Requires-Dist: docutils; extra == 'rest'
|
67
67
|
Provides-Extra: runner
|
68
|
-
Requires-Dist: robotcode-runner==1.
|
68
|
+
Requires-Dist: robotcode-runner==1.7.0; extra == 'runner'
|
69
69
|
Provides-Extra: yaml
|
70
70
|
Requires-Dist: pyyaml>=5.4; extra == 'yaml'
|
71
71
|
Description-Content-Type: text/markdown
|
@@ -51,9 +51,9 @@ classifiers = [
|
|
51
51
|
]
|
52
52
|
requires-python = ">=3.8"
|
53
53
|
dependencies = [
|
54
|
-
"robotcode-core==1.
|
55
|
-
"robotcode-plugin==1.
|
56
|
-
"robotcode-robot==1.
|
54
|
+
"robotcode-core==1.7.0",
|
55
|
+
"robotcode-plugin==1.7.0",
|
56
|
+
"robotcode-robot==1.7.0",
|
57
57
|
]
|
58
58
|
dynamic = ["version"]
|
59
59
|
|
@@ -71,23 +71,23 @@ robotcode = "robotcode.cli.__main__:main"
|
|
71
71
|
|
72
72
|
|
73
73
|
[project.optional-dependencies]
|
74
|
-
debugger = ["robotcode-debugger==1.
|
75
|
-
languageserver = ["robotcode-language-server==1.
|
76
|
-
runner = ["robotcode-runner==1.
|
77
|
-
analyze = ["robotcode-analyze==1.
|
74
|
+
debugger = ["robotcode-debugger==1.7.0"]
|
75
|
+
languageserver = ["robotcode-language-server==1.7.0"]
|
76
|
+
runner = ["robotcode-runner==1.7.0"]
|
77
|
+
analyze = ["robotcode-analyze==1.7.0"]
|
78
78
|
yaml = ["PyYAML>=5.4"]
|
79
79
|
lint = ["robotframework-robocop>=2.0.0"]
|
80
80
|
rest = ["docutils"]
|
81
|
-
repl = ["robotcode-repl==1.
|
82
|
-
replserver = ["robotcode-repl-server==1.
|
81
|
+
repl = ["robotcode-repl==1.7.0"]
|
82
|
+
replserver = ["robotcode-repl-server==1.7.0"]
|
83
83
|
colored = ["rich"]
|
84
84
|
all = [
|
85
|
-
"robotcode-debugger==1.
|
86
|
-
"robotcode-language-server==1.
|
87
|
-
"robotcode-runner==1.
|
88
|
-
"robotcode-analyze==1.
|
89
|
-
"robotcode-repl==1.
|
90
|
-
"robotcode-repl-server==1.
|
85
|
+
"robotcode-debugger==1.7.0",
|
86
|
+
"robotcode-language-server==1.7.0",
|
87
|
+
"robotcode-runner==1.7.0",
|
88
|
+
"robotcode-analyze==1.7.0",
|
89
|
+
"robotcode-repl==1.7.0",
|
90
|
+
"robotcode-repl-server==1.7.0",
|
91
91
|
"PyYAML>=5.4",
|
92
92
|
"robotframework-robocop>=2.0.0",
|
93
93
|
"docutils",
|
@@ -289,7 +289,7 @@ no_implicit_reexport = false
|
|
289
289
|
#include_runtime_files = false
|
290
290
|
|
291
291
|
[tool.pyright]
|
292
|
-
exclude = ["**/.hatch", "**/node_modules", "**/__pycache__", "bundled/libs"]
|
292
|
+
exclude = ["**/.hatch", "**/node_modules", "**/__pycache__", "bundled/libs", "intellij-client/build"]
|
293
293
|
typeCheckingMode = "off"
|
294
294
|
pythonVersion = "3.8"
|
295
295
|
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "1.7.0"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "1.6.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
|