robotcode 0.97.0__tar.gz → 0.98.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.97.0 → robotcode-0.98.0}/CHANGELOG.md +17 -0
- {robotcode-0.97.0 → robotcode-0.98.0}/PKG-INFO +14 -14
- {robotcode-0.97.0 → robotcode-0.98.0}/pyproject.toml +13 -13
- robotcode-0.98.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.97.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.97.0 → robotcode-0.98.0}/.gitignore +0 -0
- {robotcode-0.97.0 → robotcode-0.98.0}/LICENSE.txt +0 -0
- {robotcode-0.97.0 → robotcode-0.98.0}/README.md +0 -0
- {robotcode-0.97.0 → robotcode-0.98.0}/hatch.toml +0 -0
- {robotcode-0.97.0 → robotcode-0.98.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.97.0 → robotcode-0.98.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.97.0 → robotcode-0.98.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.97.0 → robotcode-0.98.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.97.0 → robotcode-0.98.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.97.0 → robotcode-0.98.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
|
+
## [0.98.0](https://github.com/robotcodedev/robotcode/compare/v0.97.0..v0.98.0) - 2024-11-19
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **analyze:** Corrected checking if a resource is already imported ([b5a76b3](https://github.com/robotcodedev/robotcode/commit/b5a76b37937f57c30209f7fb03f298bcd0588c70))
|
10
|
+
- **analyze:** Corrected importing resources with identical relative names but different base paths ([5792ac7](https://github.com/robotcodedev/robotcode/commit/5792ac764a164279db2048c6667e135a73d65444))
|
11
|
+
|
12
|
+
|
13
|
+
### Features
|
14
|
+
|
15
|
+
- **analyzer:** Added command line options for diagnostics modifiers to `code` command ([0a29800](https://github.com/robotcodedev/robotcode/commit/0a29800b53ca53fb49999053be3cb58b8a1df629))
|
16
|
+
- **repl:** Rework repl a little bit and add some new command line options ([610b1f3](https://github.com/robotcodedev/robotcode/commit/610b1f3482ed37b87e2df8058ea4ab1a05f96cd1))
|
17
|
+
|
18
|
+
see documentation
|
19
|
+
|
20
|
+
|
21
|
+
|
5
22
|
## [0.97.0](https://github.com/robotcodedev/robotcode/compare/v0.96.0..v0.97.0) - 2024-11-13
|
6
23
|
|
7
24
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.98.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,36 +33,36 @@ 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.98.0
|
37
|
+
Requires-Dist: robotcode-plugin==0.98.0
|
38
|
+
Requires-Dist: robotcode-robot==0.98.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-repl==0.
|
47
|
-
Requires-Dist: robotcode-runner==0.
|
43
|
+
Requires-Dist: robotcode-analyze==0.98.0; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-debugger==0.98.0; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-language-server==0.98.0; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-repl==0.98.0; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-runner==0.98.0; extra == 'all'
|
48
48
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
49
49
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
50
50
|
Provides-Extra: analyze
|
51
|
-
Requires-Dist: robotcode-analyze==0.
|
51
|
+
Requires-Dist: robotcode-analyze==0.98.0; extra == 'analyze'
|
52
52
|
Provides-Extra: colored
|
53
53
|
Requires-Dist: rich; extra == 'colored'
|
54
54
|
Provides-Extra: debugger
|
55
|
-
Requires-Dist: robotcode-debugger==0.
|
55
|
+
Requires-Dist: robotcode-debugger==0.98.0; extra == 'debugger'
|
56
56
|
Provides-Extra: languageserver
|
57
|
-
Requires-Dist: robotcode-language-server==0.
|
57
|
+
Requires-Dist: robotcode-language-server==0.98.0; 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==0.
|
61
|
+
Requires-Dist: robotcode-repl==0.98.0; extra == 'repl'
|
62
62
|
Provides-Extra: rest
|
63
63
|
Requires-Dist: docutils; extra == 'rest'
|
64
64
|
Provides-Extra: runner
|
65
|
-
Requires-Dist: robotcode-runner==0.
|
65
|
+
Requires-Dist: robotcode-runner==0.98.0; extra == 'runner'
|
66
66
|
Provides-Extra: tidy
|
67
67
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
68
68
|
Provides-Extra: yaml
|
@@ -51,9 +51,9 @@ classifiers = [
|
|
51
51
|
]
|
52
52
|
requires-python = ">=3.8"
|
53
53
|
dependencies = [
|
54
|
-
"robotcode-core==0.
|
55
|
-
"robotcode-plugin==0.
|
56
|
-
"robotcode-robot==0.
|
54
|
+
"robotcode-core==0.98.0",
|
55
|
+
"robotcode-plugin==0.98.0",
|
56
|
+
"robotcode-robot==0.98.0",
|
57
57
|
]
|
58
58
|
dynamic = ["version"]
|
59
59
|
|
@@ -71,22 +71,22 @@ robotcode = "robotcode.cli.__main__:main"
|
|
71
71
|
|
72
72
|
|
73
73
|
[project.optional-dependencies]
|
74
|
-
debugger = ["robotcode-debugger==0.
|
75
|
-
languageserver = ["robotcode-language-server==0.
|
76
|
-
runner = ["robotcode-runner==0.
|
77
|
-
analyze = ["robotcode-analyze==0.
|
74
|
+
debugger = ["robotcode-debugger==0.98.0"]
|
75
|
+
languageserver = ["robotcode-language-server==0.98.0"]
|
76
|
+
runner = ["robotcode-runner==0.98.0"]
|
77
|
+
analyze = ["robotcode-analyze==0.98.0"]
|
78
78
|
yaml = ["PyYAML>=5.4"]
|
79
79
|
lint = ["robotframework-robocop>=2.0.0"]
|
80
80
|
tidy = ["robotframework-tidy>=2.0.0"]
|
81
81
|
rest = ["docutils"]
|
82
|
-
repl = ["robotcode-repl==0.
|
82
|
+
repl = ["robotcode-repl==0.98.0"]
|
83
83
|
colored = ["rich"]
|
84
84
|
all = [
|
85
|
-
"robotcode-debugger==0.
|
86
|
-
"robotcode-language-server==0.
|
87
|
-
"robotcode-runner==0.
|
88
|
-
"robotcode-analyze==0.
|
89
|
-
"robotcode-repl==0.
|
85
|
+
"robotcode-debugger==0.98.0",
|
86
|
+
"robotcode-language-server==0.98.0",
|
87
|
+
"robotcode-runner==0.98.0",
|
88
|
+
"robotcode-analyze==0.98.0",
|
89
|
+
"robotcode-repl==0.98.0",
|
90
90
|
"PyYAML>=5.4",
|
91
91
|
"robotframework-robocop>=2.0.0",
|
92
92
|
"robotframework-tidy>=2.0.0",
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.98.0"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.97.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
|