robotcode 0.88.0__tar.gz → 0.89.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-0.88.0 → robotcode-0.89.1}/CHANGELOG.md +36 -0
- {robotcode-0.88.0 → robotcode-0.89.1}/PKG-INFO +12 -12
- {robotcode-0.88.0 → robotcode-0.89.1}/hatch.toml +14 -2
- {robotcode-0.88.0 → robotcode-0.89.1}/pyproject.toml +11 -11
- robotcode-0.89.1/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.88.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.88.0 → robotcode-0.89.1}/.gitignore +0 -0
- {robotcode-0.88.0 → robotcode-0.89.1}/LICENSE.txt +0 -0
- {robotcode-0.88.0 → robotcode-0.89.1}/README.md +0 -0
- {robotcode-0.88.0 → robotcode-0.89.1}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.88.0 → robotcode-0.89.1}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.88.0 → robotcode-0.89.1}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.88.0 → robotcode-0.89.1}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.88.0 → robotcode-0.89.1}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.88.0 → robotcode-0.89.1}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,42 @@
|
|
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.89.1](https://github.com/robotcodedev/robotcode/compare/v0.89.0..v0.89.1) - 2024-09-11
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- Corrected parsing of OPTION tokens and variable resolving ([5a8abf2](https://github.com/robotcodedev/robotcode/commit/5a8abf2ea5ae0be9833ecd0ff90658d6e3dbac59))
|
10
|
+
- Corrected completion of arguments after `...` continuation line ([377aa9d](https://github.com/robotcodedev/robotcode/commit/377aa9d39a185961b2e6c16cb68c7169f490b15f))
|
11
|
+
- Dont show completion right after `...` ([f24f6a8](https://github.com/robotcodedev/robotcode/commit/f24f6a8691451e34e65a3b6fba1f9d000278c066))
|
12
|
+
|
13
|
+
|
14
|
+
### Testing
|
15
|
+
|
16
|
+
- Add some more regression tests ([e2b3c4e](https://github.com/robotcodedev/robotcode/commit/e2b3c4e627df35b214d1d79b103400506d450911))
|
17
|
+
|
18
|
+
|
19
|
+
## [0.89.0](https://github.com/robotcodedev/robotcode/compare/v0.88.0..v0.89.0) - 2024-09-10
|
20
|
+
|
21
|
+
### Bug Fixes
|
22
|
+
|
23
|
+
- Document highlight should only highlight real references not text references ([a0c184a](https://github.com/robotcodedev/robotcode/commit/a0c184a809fc8128d256c723d11fa49c160bbe32))
|
24
|
+
|
25
|
+
|
26
|
+
### Features
|
27
|
+
|
28
|
+
- Enable Robot Framework 7.1 support ([6921c9a](https://github.com/robotcodedev/robotcode/commit/6921c9ac4457a3a8ad5b830584533c1c2ec69a99))
|
29
|
+
- Variables start with a `_` are no longer beeing reported as unused ([afea114](https://github.com/robotcodedev/robotcode/commit/afea11413ceb96d21397416c37f538102fd259cb))
|
30
|
+
|
31
|
+
|
32
|
+
### Refactor
|
33
|
+
|
34
|
+
- Use lambda instead of functools.partial ([1518f71](https://github.com/robotcodedev/robotcode/commit/1518f71acb48dd9e7ccd822da58d3203eebb7774))
|
35
|
+
|
36
|
+
|
37
|
+
functools.partial with method is deprecated in Python 3.13
|
38
|
+
- Fix some unused ignores for mypy ([575bbff](https://github.com/robotcodedev/robotcode/commit/575bbff0692fdcffcbc80aa4031450cff8148bd4))
|
39
|
+
|
40
|
+
|
5
41
|
## [0.88.0](https://github.com/robotcodedev/robotcode/compare/v0.87.0..v0.88.0) - 2024-09-07
|
6
42
|
|
7
43
|
### Documentation
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.89.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
|
@@ -33,33 +33,33 @@ 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.89.1
|
37
|
+
Requires-Dist: robotcode-plugin==0.89.1
|
38
|
+
Requires-Dist: robotcode-robot==0.89.1
|
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-runner==0.
|
43
|
+
Requires-Dist: robotcode-analyze==0.89.1; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-debugger==0.89.1; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-language-server==0.89.1; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-runner==0.89.1; extra == 'all'
|
47
47
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
48
48
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
49
49
|
Provides-Extra: analyze
|
50
|
-
Requires-Dist: robotcode-analyze==0.
|
50
|
+
Requires-Dist: robotcode-analyze==0.89.1; extra == 'analyze'
|
51
51
|
Provides-Extra: colored
|
52
52
|
Requires-Dist: rich; extra == 'colored'
|
53
53
|
Provides-Extra: debugger
|
54
|
-
Requires-Dist: robotcode-debugger==0.
|
54
|
+
Requires-Dist: robotcode-debugger==0.89.1; extra == 'debugger'
|
55
55
|
Provides-Extra: languageserver
|
56
|
-
Requires-Dist: robotcode-language-server==0.
|
56
|
+
Requires-Dist: robotcode-language-server==0.89.1; extra == 'languageserver'
|
57
57
|
Provides-Extra: lint
|
58
58
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
59
59
|
Provides-Extra: rest
|
60
60
|
Requires-Dist: docutils; extra == 'rest'
|
61
61
|
Provides-Extra: runner
|
62
|
-
Requires-Dist: robotcode-runner==0.
|
62
|
+
Requires-Dist: robotcode-runner==0.89.1; extra == 'runner'
|
63
63
|
Provides-Extra: tidy
|
64
64
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
65
65
|
Provides-Extra: yaml
|
@@ -43,6 +43,12 @@ create-json-schema = "python ./scripts/create_robot_toml_json_schema.py"
|
|
43
43
|
generate-rf-options = "python ./scripts/generate_rf_options.py"
|
44
44
|
install-packages = "python ./scripts/install_packages.py"
|
45
45
|
|
46
|
+
[envs.rfmaster313]
|
47
|
+
python = "3.13"
|
48
|
+
extra-dependencies = [
|
49
|
+
"robotframework @ git+https://github.com/robotframework/robotframework.git",
|
50
|
+
]
|
51
|
+
|
46
52
|
[envs.rfmaster]
|
47
53
|
python = "3.12"
|
48
54
|
extra-dependencies = [
|
@@ -66,7 +72,7 @@ python = "3.8"
|
|
66
72
|
|
67
73
|
[[envs.devel.matrix]]
|
68
74
|
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
69
|
-
rf = ["rf41", "rf50", "rf60", "rf61", "rf70"]
|
75
|
+
rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71"]
|
70
76
|
|
71
77
|
[envs.devel.overrides]
|
72
78
|
matrix.rf.dependencies = [
|
@@ -85,6 +91,9 @@ matrix.rf.dependencies = [
|
|
85
91
|
{ value = "robotframework>=7.0, <7.1", if = [
|
86
92
|
"rf70",
|
87
93
|
] },
|
94
|
+
{ value = "robotframework>=7.1, <7.2", if = [
|
95
|
+
"rf71",
|
96
|
+
] },
|
88
97
|
]
|
89
98
|
|
90
99
|
[envs.hatch-test]
|
@@ -92,7 +101,7 @@ dependencies = ["pytest", "pytest-html", "pytest_asyncio>=0.23", "pyyaml"]
|
|
92
101
|
pre-install-commands = ["python ./scripts/install_packages.py"]
|
93
102
|
|
94
103
|
[[envs.test.matrix]]
|
95
|
-
rf = ["rf41", "rf50", "rf60", "rf61", "rf70"]
|
104
|
+
rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71"]
|
96
105
|
|
97
106
|
[envs.test.overrides]
|
98
107
|
matrix.rf.dependencies = [
|
@@ -111,6 +120,9 @@ matrix.rf.dependencies = [
|
|
111
120
|
{ value = "robotframework>=7.0, <7.1", if = [
|
112
121
|
"rf70",
|
113
122
|
] },
|
123
|
+
{ value = "robotframework>=7.1, <7.2", if = [
|
124
|
+
"rf71",
|
125
|
+
] },
|
114
126
|
]
|
115
127
|
|
116
128
|
[envs.lint]
|
@@ -50,9 +50,9 @@ classifiers = [
|
|
50
50
|
]
|
51
51
|
requires-python = ">=3.8"
|
52
52
|
dependencies = [
|
53
|
-
"robotcode-core==0.
|
54
|
-
"robotcode-plugin==0.
|
55
|
-
"robotcode-robot==0.
|
53
|
+
"robotcode-core==0.89.1",
|
54
|
+
"robotcode-plugin==0.89.1",
|
55
|
+
"robotcode-robot==0.89.1",
|
56
56
|
]
|
57
57
|
dynamic = ["version"]
|
58
58
|
|
@@ -70,20 +70,20 @@ robotcode = "robotcode.cli.__main__:main"
|
|
70
70
|
|
71
71
|
|
72
72
|
[project.optional-dependencies]
|
73
|
-
debugger = ["robotcode-debugger==0.
|
74
|
-
languageserver = ["robotcode-language-server==0.
|
75
|
-
runner = ["robotcode-runner==0.
|
76
|
-
analyze = ["robotcode-analyze==0.
|
73
|
+
debugger = ["robotcode-debugger==0.89.1"]
|
74
|
+
languageserver = ["robotcode-language-server==0.89.1"]
|
75
|
+
runner = ["robotcode-runner==0.89.1"]
|
76
|
+
analyze = ["robotcode-analyze==0.89.1"]
|
77
77
|
yaml = ["PyYAML>=5.4"]
|
78
78
|
lint = ["robotframework-robocop>=2.0.0"]
|
79
79
|
tidy = ["robotframework-tidy>=2.0.0"]
|
80
80
|
rest = ["docutils"]
|
81
81
|
colored = ["rich"]
|
82
82
|
all = [
|
83
|
-
"robotcode-debugger==0.
|
84
|
-
"robotcode-language-server==0.
|
85
|
-
"robotcode-runner==0.
|
86
|
-
"robotcode-analyze==0.
|
83
|
+
"robotcode-debugger==0.89.1",
|
84
|
+
"robotcode-language-server==0.89.1",
|
85
|
+
"robotcode-runner==0.89.1",
|
86
|
+
"robotcode-analyze==0.89.1",
|
87
87
|
"PyYAML>=5.4",
|
88
88
|
"robotframework-robocop>=2.0.0",
|
89
89
|
"robotframework-tidy>=2.0.0",
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.89.1"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.88.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
|