robotcode 2.2.0__tar.gz → 2.3.1__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-2.2.0 → robotcode-2.3.1}/CHANGELOG.md +23 -0
- {robotcode-2.2.0 → robotcode-2.3.1}/PKG-INFO +7 -7
- {robotcode-2.2.0 → robotcode-2.3.1}/pyproject.toml +6 -6
- robotcode-2.3.1/src/robotcode/cli/__version__.py +1 -0
- robotcode-2.2.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-2.2.0 → robotcode-2.3.1}/.gitignore +0 -0
- {robotcode-2.2.0 → robotcode-2.3.1}/LICENSE.txt +0 -0
- {robotcode-2.2.0 → robotcode-2.3.1}/README.md +0 -0
- {robotcode-2.2.0 → robotcode-2.3.1}/hatch.toml +0 -0
- {robotcode-2.2.0 → robotcode-2.3.1}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-2.2.0 → robotcode-2.3.1}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-2.2.0 → robotcode-2.3.1}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-2.2.0 → robotcode-2.3.1}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-2.2.0 → robotcode-2.3.1}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-2.2.0 → robotcode-2.3.1}/src/robotcode/cli/py.typed +0 -0
|
@@ -2,6 +2,29 @@
|
|
|
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
|
+
## [2.3.1](https://github.com/robotcodedev/robotcode/compare/v2.3.0..v2.3.1) - 2026-03-12
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **langserver:** Update version check for Robocop in formatting and diagnostics parts ([45655f4](https://github.com/robotcodedev/robotcode/commit/45655f4c62a634b76f4e57bf284b366b2e79ce35))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## [2.3.0](https://github.com/robotcodedev/robotcode/compare/v2.2.0..v2.3.0) - 2026-03-12
|
|
13
|
+
|
|
14
|
+
### Documentation
|
|
15
|
+
|
|
16
|
+
- **tips-and-tricks:** Make LSP config OS independent ([e1abda2](https://github.com/robotcodedev/robotcode/commit/e1abda26de71f447dee3fbdc94e400a2ed1ac504))
|
|
17
|
+
|
|
18
|
+
More robust implementation of get_python_path helper function.
|
|
19
|
+
|
|
20
|
+
- **tips-and-tricks:** LSP setup guide for Neovim ([c63c125](https://github.com/robotcodedev/robotcode/commit/c63c125b39e904ceaa85bc48c78accfbd63d53e1))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
- **robocop:** Robocop 8.0 support ([f723d98](https://github.com/robotcodedev/robotcode/commit/f723d98bd3ec9ac4234ab5661681f09220c942ac))
|
|
26
|
+
|
|
27
|
+
|
|
5
28
|
## [2.2.0](https://github.com/robotcodedev/robotcode/compare/v2.1.0..v2.2.0) - 2026-01-02
|
|
6
29
|
|
|
7
30
|
### Bug Fixes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotcode
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.3.1
|
|
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
|
|
@@ -48,23 +48,23 @@ Requires-Dist: robotcode-repl-server; extra == 'all'
|
|
|
48
48
|
Requires-Dist: robotcode-runner; extra == 'all'
|
|
49
49
|
Requires-Dist: robotframework-robocop>=6.0.0; extra == 'all'
|
|
50
50
|
Provides-Extra: analyze
|
|
51
|
-
Requires-Dist: robotcode-analyze==2.
|
|
51
|
+
Requires-Dist: robotcode-analyze==2.3.1; extra == 'analyze'
|
|
52
52
|
Provides-Extra: colored
|
|
53
53
|
Requires-Dist: rich; extra == 'colored'
|
|
54
54
|
Provides-Extra: debugger
|
|
55
|
-
Requires-Dist: robotcode-debugger==2.
|
|
55
|
+
Requires-Dist: robotcode-debugger==2.3.1; extra == 'debugger'
|
|
56
56
|
Provides-Extra: languageserver
|
|
57
|
-
Requires-Dist: robotcode-language-server==2.
|
|
57
|
+
Requires-Dist: robotcode-language-server==2.3.1; extra == 'languageserver'
|
|
58
58
|
Provides-Extra: lint
|
|
59
59
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
|
60
60
|
Provides-Extra: repl
|
|
61
|
-
Requires-Dist: robotcode-repl==2.
|
|
61
|
+
Requires-Dist: robotcode-repl==2.3.1; extra == 'repl'
|
|
62
62
|
Provides-Extra: replserver
|
|
63
|
-
Requires-Dist: robotcode-repl-server==2.
|
|
63
|
+
Requires-Dist: robotcode-repl-server==2.3.1; extra == 'replserver'
|
|
64
64
|
Provides-Extra: rest
|
|
65
65
|
Requires-Dist: docutils; extra == 'rest'
|
|
66
66
|
Provides-Extra: runner
|
|
67
|
-
Requires-Dist: robotcode-runner==2.
|
|
67
|
+
Requires-Dist: robotcode-runner==2.3.1; extra == 'runner'
|
|
68
68
|
Provides-Extra: yaml
|
|
69
69
|
Requires-Dist: pyyaml>=5.4; extra == 'yaml'
|
|
70
70
|
Description-Content-Type: text/markdown
|
|
@@ -52,15 +52,15 @@ dependencies = ["robotcode-core", "robotcode-plugin", "robotcode-robot"]
|
|
|
52
52
|
dynamic = ["version"]
|
|
53
53
|
|
|
54
54
|
[project.optional-dependencies]
|
|
55
|
-
debugger = ["robotcode-debugger==2.
|
|
56
|
-
languageserver = ["robotcode-language-server==2.
|
|
57
|
-
runner = ["robotcode-runner==2.
|
|
58
|
-
analyze = ["robotcode-analyze==2.
|
|
55
|
+
debugger = ["robotcode-debugger==2.3.1"]
|
|
56
|
+
languageserver = ["robotcode-language-server==2.3.1"]
|
|
57
|
+
runner = ["robotcode-runner==2.3.1"]
|
|
58
|
+
analyze = ["robotcode-analyze==2.3.1"]
|
|
59
59
|
yaml = ["PyYAML>=5.4"]
|
|
60
60
|
lint = ["robotframework-robocop>=2.0.0"]
|
|
61
61
|
rest = ["docutils"]
|
|
62
|
-
repl = ["robotcode-repl==2.
|
|
63
|
-
replserver = ["robotcode-repl-server==2.
|
|
62
|
+
repl = ["robotcode-repl==2.3.1"]
|
|
63
|
+
replserver = ["robotcode-repl-server==2.3.1"]
|
|
64
64
|
colored = ["rich"]
|
|
65
65
|
all = [
|
|
66
66
|
"robotcode-debugger",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.3.1"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2.2.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
|