robotcode 0.100.1__tar.gz → 0.101.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.100.1 → robotcode-0.101.0}/CHANGELOG.md +22 -0
- {robotcode-0.100.1 → robotcode-0.101.0}/PKG-INFO +16 -16
- {robotcode-0.100.1 → robotcode-0.101.0}/hatch.toml +2 -2
- {robotcode-0.100.1 → robotcode-0.101.0}/pyproject.toml +15 -15
- robotcode-0.101.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.100.1/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.100.1 → robotcode-0.101.0}/.gitignore +0 -0
- {robotcode-0.100.1 → robotcode-0.101.0}/LICENSE.txt +0 -0
- {robotcode-0.100.1 → robotcode-0.101.0}/README.md +0 -0
- {robotcode-0.100.1 → robotcode-0.101.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.100.1 → robotcode-0.101.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.100.1 → robotcode-0.101.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.100.1 → robotcode-0.101.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.100.1 → robotcode-0.101.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.100.1 → robotcode-0.101.0}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,28 @@
|
|
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.101.0](https://github.com/robotcodedev/robotcode/compare/v0.100.2..v0.101.0) - 2024-12-11
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **vscode:** Fixed highlightning of bold/italic in documentation ([d0e3b2e](https://github.com/robotcodedev/robotcode/commit/d0e3b2edcb7ef05ae99e9053a5acd47a2ce74901))
|
10
|
+
|
11
|
+
|
12
|
+
### Features
|
13
|
+
|
14
|
+
- **icons:** Change the color of the file icons back to the official colors ([d6b2ff4](https://github.com/robotcodedev/robotcode/commit/d6b2ff4f19f9eee33c56daad3f2a59b2d2e89d29))
|
15
|
+
- **langserver:** Support for folding WHILE and TRY/EXCEPT/FINALLY statements ([b3c1ce2](https://github.com/robotcodedev/robotcode/commit/b3c1ce2ad8d2f696b33c240672edc3822524403f))
|
16
|
+
- **notebook:** Optimize robot notebook file format, remove old html output ([7bc22fb](https://github.com/robotcodedev/robotcode/commit/7bc22fbc8793f375e5f6a532c07f910d90df092a))
|
17
|
+
- **vscode:** Added "File > New File" menu support and context menu option for creating Robot files in the file explorer ([330fc4c](https://github.com/robotcodedev/robotcode/commit/330fc4cf596b9cf60c37aeee102f0fda92873f38))
|
18
|
+
|
19
|
+
|
20
|
+
## [0.100.2](https://github.com/robotcodedev/robotcode/compare/v0.100.1..v0.100.2) - 2024-12-06
|
21
|
+
|
22
|
+
### Bug Fixes
|
23
|
+
|
24
|
+
- **plugin:** Corrected context based change current directory ([359589d](https://github.com/robotcodedev/robotcode/commit/359589d5c7a2f1b48bd0677db4e3fde6172aa6b8))
|
25
|
+
|
26
|
+
|
5
27
|
## [0.100.1](https://github.com/robotcodedev/robotcode/compare/v0.100.0..v0.100.1) - 2024-12-06
|
6
28
|
|
7
29
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.101.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,39 +33,39 @@ 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.101.0
|
37
|
+
Requires-Dist: robotcode-plugin==0.101.0
|
38
|
+
Requires-Dist: robotcode-robot==0.101.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-server==0.
|
47
|
-
Requires-Dist: robotcode-repl==0.
|
48
|
-
Requires-Dist: robotcode-runner==0.
|
43
|
+
Requires-Dist: robotcode-analyze==0.101.0; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-debugger==0.101.0; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-language-server==0.101.0; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-repl-server==0.101.0; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-repl==0.101.0; extra == 'all'
|
48
|
+
Requires-Dist: robotcode-runner==0.101.0; extra == 'all'
|
49
49
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
50
50
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
51
51
|
Provides-Extra: analyze
|
52
|
-
Requires-Dist: robotcode-analyze==0.
|
52
|
+
Requires-Dist: robotcode-analyze==0.101.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==0.
|
56
|
+
Requires-Dist: robotcode-debugger==0.101.0; extra == 'debugger'
|
57
57
|
Provides-Extra: languageserver
|
58
|
-
Requires-Dist: robotcode-language-server==0.
|
58
|
+
Requires-Dist: robotcode-language-server==0.101.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==0.
|
62
|
+
Requires-Dist: robotcode-repl==0.101.0; extra == 'repl'
|
63
63
|
Provides-Extra: replserver
|
64
|
-
Requires-Dist: robotcode-repl-server==0.
|
64
|
+
Requires-Dist: robotcode-repl-server==0.101.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==0.
|
68
|
+
Requires-Dist: robotcode-runner==0.101.0; extra == 'runner'
|
69
69
|
Provides-Extra: tidy
|
70
70
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
71
71
|
Provides-Extra: yaml
|
@@ -13,7 +13,7 @@ only-include = ["src", "CHANGELOG.md"]
|
|
13
13
|
|
14
14
|
|
15
15
|
[envs.default]
|
16
|
-
|
16
|
+
installer = "uv"
|
17
17
|
dependencies = [
|
18
18
|
"pytest",
|
19
19
|
"pytest-html",
|
@@ -37,7 +37,7 @@ pre-install-commands = ["install-packages"]
|
|
37
37
|
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=robotcode --cov=tests {args}"
|
38
38
|
no-cov = "cov --no-cov {args}"
|
39
39
|
test = "pytest {args}"
|
40
|
-
test-reset = "
|
40
|
+
test-reset = "pytest --regtest2-reset {args}"
|
41
41
|
install-bundled-editable = "python ./scripts/install_bundled_editable.py"
|
42
42
|
create-json-schema = "python ./scripts/create_robot_toml_json_schema.py"
|
43
43
|
generate-rf-options = "python ./scripts/generate_rf_options.py"
|
@@ -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.101.0",
|
55
|
+
"robotcode-plugin==0.101.0",
|
56
|
+
"robotcode-robot==0.101.0",
|
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.
|
75
|
-
languageserver = ["robotcode-language-server==0.
|
76
|
-
runner = ["robotcode-runner==0.
|
77
|
-
analyze = ["robotcode-analyze==0.
|
74
|
+
debugger = ["robotcode-debugger==0.101.0"]
|
75
|
+
languageserver = ["robotcode-language-server==0.101.0"]
|
76
|
+
runner = ["robotcode-runner==0.101.0"]
|
77
|
+
analyze = ["robotcode-analyze==0.101.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.
|
83
|
-
replserver = ["robotcode-repl-server==0.
|
82
|
+
repl = ["robotcode-repl==0.101.0"]
|
83
|
+
replserver = ["robotcode-repl-server==0.101.0"]
|
84
84
|
colored = ["rich"]
|
85
85
|
all = [
|
86
|
-
"robotcode-debugger==0.
|
87
|
-
"robotcode-language-server==0.
|
88
|
-
"robotcode-runner==0.
|
89
|
-
"robotcode-analyze==0.
|
90
|
-
"robotcode-repl==0.
|
91
|
-
"robotcode-repl-server==0.
|
86
|
+
"robotcode-debugger==0.101.0",
|
87
|
+
"robotcode-language-server==0.101.0",
|
88
|
+
"robotcode-runner==0.101.0",
|
89
|
+
"robotcode-analyze==0.101.0",
|
90
|
+
"robotcode-repl==0.101.0",
|
91
|
+
"robotcode-repl-server==0.101.0",
|
92
92
|
"PyYAML>=5.4",
|
93
93
|
"robotframework-robocop>=2.0.0",
|
94
94
|
"robotframework-tidy>=2.0.0",
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.101.0"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.100.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
|