robotcode 0.108.0__tar.gz → 0.108.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.108.0 → robotcode-0.108.1}/.gitignore +34 -0
- {robotcode-0.108.0 → robotcode-0.108.1}/CHANGELOG.md +9 -0
- {robotcode-0.108.0 → robotcode-0.108.1}/PKG-INFO +16 -16
- {robotcode-0.108.0 → robotcode-0.108.1}/pyproject.toml +15 -15
- robotcode-0.108.1/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.108.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.108.0 → robotcode-0.108.1}/LICENSE.txt +0 -0
- {robotcode-0.108.0 → robotcode-0.108.1}/README.md +0 -0
- {robotcode-0.108.0 → robotcode-0.108.1}/hatch.toml +1 -1
- {robotcode-0.108.0 → robotcode-0.108.1}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.108.0 → robotcode-0.108.1}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.108.0 → robotcode-0.108.1}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.108.0 → robotcode-0.108.1}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.108.0 → robotcode-0.108.1}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.108.0 → robotcode-0.108.1}/src/robotcode/cli/py.typed +0 -0
@@ -1,3 +1,37 @@
|
|
1
|
+
# Created by https://www.toptal.com/developers/gitignore/api/macos
|
2
|
+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos
|
3
|
+
|
4
|
+
### macOS ###
|
5
|
+
# General
|
6
|
+
.DS_Store
|
7
|
+
.AppleDouble
|
8
|
+
.LSOverride
|
9
|
+
|
10
|
+
# Thumbnails
|
11
|
+
._*
|
12
|
+
|
13
|
+
# Files that might appear in the root of a volume
|
14
|
+
.DocumentRevisions-V100
|
15
|
+
.fseventsd
|
16
|
+
.Spotlight-V100
|
17
|
+
.TemporaryItems
|
18
|
+
.Trashes
|
19
|
+
.VolumeIcon.icns
|
20
|
+
.com.apple.timemachine.donotpresent
|
21
|
+
|
22
|
+
# Directories potentially created on remote AFP share
|
23
|
+
.AppleDB
|
24
|
+
.AppleDesktop
|
25
|
+
Network Trash Folder
|
26
|
+
Temporary Items
|
27
|
+
.apdisk
|
28
|
+
|
29
|
+
### macOS Patch ###
|
30
|
+
# iCloud generated files
|
31
|
+
*.icloud
|
32
|
+
|
33
|
+
# End of https://www.toptal.com/developers/gitignore/api/macos
|
34
|
+
|
1
35
|
# Byte-compiled / optimized / DLL files
|
2
36
|
__pycache__/
|
3
37
|
*.py[cod]
|
@@ -2,6 +2,15 @@
|
|
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.108.1](https://github.com/robotcodedev/robotcode/compare/v0.108.0..v0.108.1) - 2025-02-03
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **intellij:** Make comparing testitem uri's platform independend ([f597624](https://github.com/robotcodedev/robotcode/commit/f597624c6063410ba7f5afcc09a77c770636fd57))
|
10
|
+
- **langserver:** Cache to_markdown methods ([39e509e](https://github.com/robotcodedev/robotcode/commit/39e509eb03ba01ae2b1fbce021640c2b76f8f1e6))
|
11
|
+
- **langserver:** Only send complete documentation when resolving completion items for typed dicts and enums ([498af3c](https://github.com/robotcodedev/robotcode/commit/498af3c9845c181c0541bd21ae7b19bf6f137db4))
|
12
|
+
|
13
|
+
|
5
14
|
## [0.108.0](https://github.com/robotcodedev/robotcode/compare/v0.107.0..v0.108.0) - 2025-01-22
|
6
15
|
|
7
16
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.108.
|
3
|
+
Version: 0.108.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
|
@@ -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.108.
|
38
|
-
Requires-Dist: robotcode-plugin==0.108.
|
39
|
-
Requires-Dist: robotcode-robot==0.108.
|
37
|
+
Requires-Dist: robotcode-core==0.108.1
|
38
|
+
Requires-Dist: robotcode-plugin==0.108.1
|
39
|
+
Requires-Dist: robotcode-robot==0.108.1
|
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.108.
|
45
|
-
Requires-Dist: robotcode-debugger==0.108.
|
46
|
-
Requires-Dist: robotcode-language-server==0.108.
|
47
|
-
Requires-Dist: robotcode-repl-server==0.108.
|
48
|
-
Requires-Dist: robotcode-repl==0.108.
|
49
|
-
Requires-Dist: robotcode-runner==0.108.
|
44
|
+
Requires-Dist: robotcode-analyze==0.108.1; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-debugger==0.108.1; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-language-server==0.108.1; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-repl-server==0.108.1; extra == 'all'
|
48
|
+
Requires-Dist: robotcode-repl==0.108.1; extra == 'all'
|
49
|
+
Requires-Dist: robotcode-runner==0.108.1; 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.108.
|
53
|
+
Requires-Dist: robotcode-analyze==0.108.1; 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.108.
|
57
|
+
Requires-Dist: robotcode-debugger==0.108.1; extra == 'debugger'
|
58
58
|
Provides-Extra: languageserver
|
59
|
-
Requires-Dist: robotcode-language-server==0.108.
|
59
|
+
Requires-Dist: robotcode-language-server==0.108.1; 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.108.
|
63
|
+
Requires-Dist: robotcode-repl==0.108.1; extra == 'repl'
|
64
64
|
Provides-Extra: replserver
|
65
|
-
Requires-Dist: robotcode-repl-server==0.108.
|
65
|
+
Requires-Dist: robotcode-repl-server==0.108.1; 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.108.
|
69
|
+
Requires-Dist: robotcode-runner==0.108.1; extra == 'runner'
|
70
70
|
Provides-Extra: tidy
|
71
71
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
72
72
|
Provides-Extra: yaml
|
@@ -51,9 +51,9 @@ classifiers = [
|
|
51
51
|
]
|
52
52
|
requires-python = ">=3.8"
|
53
53
|
dependencies = [
|
54
|
-
"robotcode-core==0.108.
|
55
|
-
"robotcode-plugin==0.108.
|
56
|
-
"robotcode-robot==0.108.
|
54
|
+
"robotcode-core==0.108.1",
|
55
|
+
"robotcode-plugin==0.108.1",
|
56
|
+
"robotcode-robot==0.108.1",
|
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.108.
|
75
|
-
languageserver = ["robotcode-language-server==0.108.
|
76
|
-
runner = ["robotcode-runner==0.108.
|
77
|
-
analyze = ["robotcode-analyze==0.108.
|
74
|
+
debugger = ["robotcode-debugger==0.108.1"]
|
75
|
+
languageserver = ["robotcode-language-server==0.108.1"]
|
76
|
+
runner = ["robotcode-runner==0.108.1"]
|
77
|
+
analyze = ["robotcode-analyze==0.108.1"]
|
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.108.
|
83
|
-
replserver = ["robotcode-repl-server==0.108.
|
82
|
+
repl = ["robotcode-repl==0.108.1"]
|
83
|
+
replserver = ["robotcode-repl-server==0.108.1"]
|
84
84
|
colored = ["rich"]
|
85
85
|
all = [
|
86
|
-
"robotcode-debugger==0.108.
|
87
|
-
"robotcode-language-server==0.108.
|
88
|
-
"robotcode-runner==0.108.
|
89
|
-
"robotcode-analyze==0.108.
|
90
|
-
"robotcode-repl==0.108.
|
91
|
-
"robotcode-repl-server==0.108.
|
86
|
+
"robotcode-debugger==0.108.1",
|
87
|
+
"robotcode-language-server==0.108.1",
|
88
|
+
"robotcode-runner==0.108.1",
|
89
|
+
"robotcode-analyze==0.108.1",
|
90
|
+
"robotcode-repl==0.108.1",
|
91
|
+
"robotcode-repl-server==0.108.1",
|
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.108.1"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.108.0"
|
File without changes
|
File without changes
|
@@ -38,7 +38,6 @@ cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=robotc
|
|
38
38
|
no-cov = "cov --no-cov {args}"
|
39
39
|
test = "pytest {args}"
|
40
40
|
test-reset = "pytest --regtest2-reset {args}"
|
41
|
-
install-bundled-editable = "python ./scripts/install_bundled_editable.py"
|
42
41
|
create-json-schema = "python ./scripts/create_robot_toml_json_schema.py"
|
43
42
|
generate-rf-options = "python ./scripts/generate_rf_options.py"
|
44
43
|
install-packages = "python ./scripts/install_packages.py"
|
@@ -177,3 +176,4 @@ publish = ["python scripts/publish.py"]
|
|
177
176
|
extract-release-notes = ["python scripts/extract_release_notes.py"]
|
178
177
|
is-prerelease = ["python scripts/is_prerelease.py"]
|
179
178
|
bump = ["cz bump"]
|
179
|
+
install-bundled-editable = "python ./scripts/install_bundled_editable.py"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|