robotcode 0.109.1__tar.gz → 0.109.2__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.109.1 → robotcode-0.109.2}/CHANGELOG.md +16 -0
- {robotcode-0.109.1 → robotcode-0.109.2}/PKG-INFO +16 -16
- {robotcode-0.109.1 → robotcode-0.109.2}/hatch.toml +1 -1
- {robotcode-0.109.1 → robotcode-0.109.2}/pyproject.toml +15 -15
- {robotcode-0.109.1 → robotcode-0.109.2}/src/robotcode/cli/__init__.py +0 -20
- robotcode-0.109.2/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.109.1/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.109.1 → robotcode-0.109.2}/.gitignore +0 -0
- {robotcode-0.109.1 → robotcode-0.109.2}/LICENSE.txt +0 -0
- {robotcode-0.109.1 → robotcode-0.109.2}/README.md +0 -0
- {robotcode-0.109.1 → robotcode-0.109.2}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.109.1 → robotcode-0.109.2}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.109.1 → robotcode-0.109.2}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.109.1 → robotcode-0.109.2}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.109.1 → robotcode-0.109.2}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,22 @@
|
|
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.109.2](https://github.com/robotcodedev/robotcode/compare/v0.109.1..v0.109.2) - 2025-02-23
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **intellij:** Remove trailing slash from URIs ([62fde84](https://github.com/robotcodedev/robotcode/commit/62fde847aff911f0e6e7b521c1e564f8a0fa2455))
|
10
|
+
|
11
|
+
|
12
|
+
### Refactor
|
13
|
+
|
14
|
+
- **robotcode:** Remove `clean` and `new` command because we implement it later ([6da369a](https://github.com/robotcodedev/robotcode/commit/6da369ae69c1f3f6b1f97c9952d3035dc713076f))
|
15
|
+
|
16
|
+
create enhancement request #393
|
17
|
+
|
18
|
+
- **runner:** Remove underlining from statistics output ([6fdd81d](https://github.com/robotcodedev/robotcode/commit/6fdd81d03d0d9ba826f331f32c739662d947609f))
|
19
|
+
|
20
|
+
|
5
21
|
## [0.109.1](https://github.com/robotcodedev/robotcode/compare/v0.109.0..v0.109.1) - 2025-02-10
|
6
22
|
|
7
23
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.109.
|
3
|
+
Version: 0.109.2
|
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,39 +34,39 @@ 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==0.109.
|
38
|
-
Requires-Dist: robotcode-plugin==0.109.
|
39
|
-
Requires-Dist: robotcode-robot==0.109.
|
37
|
+
Requires-Dist: robotcode-core==0.109.2
|
38
|
+
Requires-Dist: robotcode-plugin==0.109.2
|
39
|
+
Requires-Dist: robotcode-robot==0.109.2
|
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==0.109.
|
45
|
-
Requires-Dist: robotcode-debugger==0.109.
|
46
|
-
Requires-Dist: robotcode-language-server==0.109.
|
47
|
-
Requires-Dist: robotcode-repl-server==0.109.
|
48
|
-
Requires-Dist: robotcode-repl==0.109.
|
49
|
-
Requires-Dist: robotcode-runner==0.109.
|
44
|
+
Requires-Dist: robotcode-analyze==0.109.2; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-debugger==0.109.2; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-language-server==0.109.2; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-repl-server==0.109.2; extra == 'all'
|
48
|
+
Requires-Dist: robotcode-repl==0.109.2; extra == 'all'
|
49
|
+
Requires-Dist: robotcode-runner==0.109.2; extra == 'all'
|
50
50
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
51
51
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
52
52
|
Provides-Extra: analyze
|
53
|
-
Requires-Dist: robotcode-analyze==0.109.
|
53
|
+
Requires-Dist: robotcode-analyze==0.109.2; extra == 'analyze'
|
54
54
|
Provides-Extra: colored
|
55
55
|
Requires-Dist: rich; extra == 'colored'
|
56
56
|
Provides-Extra: debugger
|
57
|
-
Requires-Dist: robotcode-debugger==0.109.
|
57
|
+
Requires-Dist: robotcode-debugger==0.109.2; extra == 'debugger'
|
58
58
|
Provides-Extra: languageserver
|
59
|
-
Requires-Dist: robotcode-language-server==0.109.
|
59
|
+
Requires-Dist: robotcode-language-server==0.109.2; extra == 'languageserver'
|
60
60
|
Provides-Extra: lint
|
61
61
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
62
62
|
Provides-Extra: repl
|
63
|
-
Requires-Dist: robotcode-repl==0.109.
|
63
|
+
Requires-Dist: robotcode-repl==0.109.2; extra == 'repl'
|
64
64
|
Provides-Extra: replserver
|
65
|
-
Requires-Dist: robotcode-repl-server==0.109.
|
65
|
+
Requires-Dist: robotcode-repl-server==0.109.2; extra == 'replserver'
|
66
66
|
Provides-Extra: rest
|
67
67
|
Requires-Dist: docutils; extra == 'rest'
|
68
68
|
Provides-Extra: runner
|
69
|
-
Requires-Dist: robotcode-runner==0.109.
|
69
|
+
Requires-Dist: robotcode-runner==0.109.2; extra == 'runner'
|
70
70
|
Provides-Extra: tidy
|
71
71
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
72
72
|
Provides-Extra: yaml
|
@@ -175,5 +175,5 @@ package = ["python scripts/package.py"]
|
|
175
175
|
publish = ["python scripts/publish.py"]
|
176
176
|
extract-release-notes = ["python scripts/extract_release_notes.py"]
|
177
177
|
is-prerelease = ["python scripts/is_prerelease.py"]
|
178
|
-
bump = ["cz bump"]
|
178
|
+
bump = ["cz bump {args}"]
|
179
179
|
install-bundled-editable = "python ./scripts/install_bundled_editable.py"
|
@@ -51,9 +51,9 @@ classifiers = [
|
|
51
51
|
]
|
52
52
|
requires-python = ">=3.8"
|
53
53
|
dependencies = [
|
54
|
-
"robotcode-core==0.109.
|
55
|
-
"robotcode-plugin==0.109.
|
56
|
-
"robotcode-robot==0.109.
|
54
|
+
"robotcode-core==0.109.2",
|
55
|
+
"robotcode-plugin==0.109.2",
|
56
|
+
"robotcode-robot==0.109.2",
|
57
57
|
]
|
58
58
|
dynamic = ["version"]
|
59
59
|
|
@@ -71,24 +71,24 @@ robotcode = "robotcode.cli.__main__:main"
|
|
71
71
|
|
72
72
|
|
73
73
|
[project.optional-dependencies]
|
74
|
-
debugger = ["robotcode-debugger==0.109.
|
75
|
-
languageserver = ["robotcode-language-server==0.109.
|
76
|
-
runner = ["robotcode-runner==0.109.
|
77
|
-
analyze = ["robotcode-analyze==0.109.
|
74
|
+
debugger = ["robotcode-debugger==0.109.2"]
|
75
|
+
languageserver = ["robotcode-language-server==0.109.2"]
|
76
|
+
runner = ["robotcode-runner==0.109.2"]
|
77
|
+
analyze = ["robotcode-analyze==0.109.2"]
|
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.109.
|
83
|
-
replserver = ["robotcode-repl-server==0.109.
|
82
|
+
repl = ["robotcode-repl==0.109.2"]
|
83
|
+
replserver = ["robotcode-repl-server==0.109.2"]
|
84
84
|
colored = ["rich"]
|
85
85
|
all = [
|
86
|
-
"robotcode-debugger==0.109.
|
87
|
-
"robotcode-language-server==0.109.
|
88
|
-
"robotcode-runner==0.109.
|
89
|
-
"robotcode-analyze==0.109.
|
90
|
-
"robotcode-repl==0.109.
|
91
|
-
"robotcode-repl-server==0.109.
|
86
|
+
"robotcode-debugger==0.109.2",
|
87
|
+
"robotcode-language-server==0.109.2",
|
88
|
+
"robotcode-runner==0.109.2",
|
89
|
+
"robotcode-analyze==0.109.2",
|
90
|
+
"robotcode-repl==0.109.2",
|
91
|
+
"robotcode-repl-server==0.109.2",
|
92
92
|
"PyYAML>=5.4",
|
93
93
|
"robotframework-robocop>=2.0.0",
|
94
94
|
"robotframework-tidy>=2.0.0",
|
@@ -303,23 +303,3 @@ robotcode.add_command(profiles)
|
|
303
303
|
|
304
304
|
for c in PluginManager.instance().cli_commands:
|
305
305
|
robotcode.add_command(c)
|
306
|
-
|
307
|
-
|
308
|
-
@robotcode.command()
|
309
|
-
@click.pass_context
|
310
|
-
def clean(ctx: click.Context) -> None:
|
311
|
-
"""TODO: Cleans a Robot Framework project.
|
312
|
-
|
313
|
-
TODO: This is not implemented yet.
|
314
|
-
"""
|
315
|
-
click.echo("TODO")
|
316
|
-
|
317
|
-
|
318
|
-
@robotcode.command()
|
319
|
-
@click.pass_context
|
320
|
-
def new(ctx: click.Context) -> None:
|
321
|
-
"""TODO: Create a new Robot Framework project.
|
322
|
-
|
323
|
-
TODO: This is not implemented yet.
|
324
|
-
"""
|
325
|
-
click.echo("TODO")
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.109.2"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.109.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
|