robotcode 0.106.1__tar.gz → 0.107.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.
@@ -2,6 +2,38 @@
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.107.0](https://github.com/robotcodedev/robotcode/compare/v0.106.1..v0.107.0) - 2025-01-21
6
+
7
+ ### Bug Fixes
8
+
9
+ - **intellij:** Stabilized getting the correct python sdk for a project ([f8622ef](https://github.com/robotcodedev/robotcode/commit/f8622ef6eacfb6dc484044b465f281cba02ee0c3))
10
+
11
+
12
+ ### Features
13
+
14
+ - **intellij:** Dynamic update of test run buttons on file and configuration changes ([da9687c](https://github.com/robotcodedev/robotcode/commit/da9687c0cd75270d6f7f397f776f230b3469a684))
15
+ - **intellij:** Implemented support for 4 spaces tab ([de83635](https://github.com/robotcodedev/robotcode/commit/de836356cd991cf09d315aaacad2ed1e94c433b9))
16
+
17
+ - this is enabled by default for robot files
18
+
19
+ - **intellij:** Support for highlight for python expressions ([a2c2760](https://github.com/robotcodedev/robotcode/commit/a2c276043f26303b4856dc13aed88cd2eea5432f))
20
+ - **langserver:** Support for workspace symbols ([a90ce60](https://github.com/robotcodedev/robotcode/commit/a90ce60250b9dc82c8a78bc910878171617c6a45))
21
+ - **langserver:** Support for workspace symbols ([66cb701](https://github.com/robotcodedev/robotcode/commit/66cb701620322bd248db053dcb3d0f598c76a93b))
22
+
23
+
24
+ ### Refactor
25
+
26
+ - **robot:** Remove unused digest fields from KeywordDoc and LibraryDoc ([e550fb0](https://github.com/robotcodedev/robotcode/commit/e550fb0be816fed4a1d66d17ae3f02b059095713))
27
+
28
+
29
+ ### Testing
30
+
31
+ - **langserver:** Correct some regression tests ([98fe4d0](https://github.com/robotcodedev/robotcode/commit/98fe4d0581170f71f6ed02a43f8bb4fb19699437))
32
+ - **langserver:** Corrected some regression tests ([1fa8e7a](https://github.com/robotcodedev/robotcode/commit/1fa8e7a6e43ea370db5821a9ba8549b88eafad6d))
33
+ - **langserver:** Corrected some more regression tests ([2c8e451](https://github.com/robotcodedev/robotcode/commit/2c8e451de333ae30c7d0c0716ef4ace23e2d8f6b))
34
+ - **langserver:** Corrected some more regression tests ([68bd93c](https://github.com/robotcodedev/robotcode/commit/68bd93cccd763290ff34021a18811f46340c94b9))
35
+
36
+
5
37
  ## [0.106.1](https://github.com/robotcodedev/robotcode/compare/v0.106.0..v0.106.1) - 2025-01-16
6
38
 
7
39
  ### Bug Fixes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotcode
3
- Version: 0.106.1
3
+ Version: 0.107.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
@@ -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.106.1
38
- Requires-Dist: robotcode-plugin==0.106.1
39
- Requires-Dist: robotcode-robot==0.106.1
37
+ Requires-Dist: robotcode-core==0.107.0
38
+ Requires-Dist: robotcode-plugin==0.107.0
39
+ Requires-Dist: robotcode-robot==0.107.0
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.106.1; extra == 'all'
45
- Requires-Dist: robotcode-debugger==0.106.1; extra == 'all'
46
- Requires-Dist: robotcode-language-server==0.106.1; extra == 'all'
47
- Requires-Dist: robotcode-repl-server==0.106.1; extra == 'all'
48
- Requires-Dist: robotcode-repl==0.106.1; extra == 'all'
49
- Requires-Dist: robotcode-runner==0.106.1; extra == 'all'
44
+ Requires-Dist: robotcode-analyze==0.107.0; extra == 'all'
45
+ Requires-Dist: robotcode-debugger==0.107.0; extra == 'all'
46
+ Requires-Dist: robotcode-language-server==0.107.0; extra == 'all'
47
+ Requires-Dist: robotcode-repl-server==0.107.0; extra == 'all'
48
+ Requires-Dist: robotcode-repl==0.107.0; extra == 'all'
49
+ Requires-Dist: robotcode-runner==0.107.0; 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.106.1; extra == 'analyze'
53
+ Requires-Dist: robotcode-analyze==0.107.0; 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.106.1; extra == 'debugger'
57
+ Requires-Dist: robotcode-debugger==0.107.0; extra == 'debugger'
58
58
  Provides-Extra: languageserver
59
- Requires-Dist: robotcode-language-server==0.106.1; extra == 'languageserver'
59
+ Requires-Dist: robotcode-language-server==0.107.0; 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.106.1; extra == 'repl'
63
+ Requires-Dist: robotcode-repl==0.107.0; extra == 'repl'
64
64
  Provides-Extra: replserver
65
- Requires-Dist: robotcode-repl-server==0.106.1; extra == 'replserver'
65
+ Requires-Dist: robotcode-repl-server==0.107.0; 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.106.1; extra == 'runner'
69
+ Requires-Dist: robotcode-runner==0.107.0; 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.106.1",
55
- "robotcode-plugin==0.106.1",
56
- "robotcode-robot==0.106.1",
54
+ "robotcode-core==0.107.0",
55
+ "robotcode-plugin==0.107.0",
56
+ "robotcode-robot==0.107.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.106.1"]
75
- languageserver = ["robotcode-language-server==0.106.1"]
76
- runner = ["robotcode-runner==0.106.1"]
77
- analyze = ["robotcode-analyze==0.106.1"]
74
+ debugger = ["robotcode-debugger==0.107.0"]
75
+ languageserver = ["robotcode-language-server==0.107.0"]
76
+ runner = ["robotcode-runner==0.107.0"]
77
+ analyze = ["robotcode-analyze==0.107.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.106.1"]
83
- replserver = ["robotcode-repl-server==0.106.1"]
82
+ repl = ["robotcode-repl==0.107.0"]
83
+ replserver = ["robotcode-repl-server==0.107.0"]
84
84
  colored = ["rich"]
85
85
  all = [
86
- "robotcode-debugger==0.106.1",
87
- "robotcode-language-server==0.106.1",
88
- "robotcode-runner==0.106.1",
89
- "robotcode-analyze==0.106.1",
90
- "robotcode-repl==0.106.1",
91
- "robotcode-repl-server==0.106.1",
86
+ "robotcode-debugger==0.107.0",
87
+ "robotcode-language-server==0.107.0",
88
+ "robotcode-runner==0.107.0",
89
+ "robotcode-analyze==0.107.0",
90
+ "robotcode-repl==0.107.0",
91
+ "robotcode-repl-server==0.107.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.107.0"
@@ -1 +0,0 @@
1
- __version__ = "0.106.1"
File without changes
File without changes
File without changes
File without changes