robotcode 0.93.0__tar.gz → 0.93.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.
@@ -2,6 +2,13 @@
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.93.1](https://github.com/robotcodedev/robotcode/compare/v0.93.0..v0.93.1) - 2024-10-09
6
+
7
+ ### Bug Fixes
8
+
9
+ - **langserver:** Stabilized resolving of variables in test case and keyword documentation ([1bad58f](https://github.com/robotcodedev/robotcode/commit/1bad58fa16e10f0fe5b5f947b7fbea93b5497d8d))
10
+
11
+
5
12
  ## [0.93.0](https://github.com/robotcodedev/robotcode/compare/v0.92.0..v0.93.0) - 2024-10-08
6
13
 
7
14
  ### Bug Fixes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: robotcode
3
- Version: 0.93.0
3
+ Version: 0.93.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,36 +33,36 @@ 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.93.0
37
- Requires-Dist: robotcode-plugin==0.93.0
38
- Requires-Dist: robotcode-robot==0.93.0
36
+ Requires-Dist: robotcode-core==0.93.1
37
+ Requires-Dist: robotcode-plugin==0.93.1
38
+ Requires-Dist: robotcode-robot==0.93.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.93.0; extra == 'all'
44
- Requires-Dist: robotcode-debugger==0.93.0; extra == 'all'
45
- Requires-Dist: robotcode-language-server==0.93.0; extra == 'all'
46
- Requires-Dist: robotcode-repl==0.93.0; extra == 'all'
47
- Requires-Dist: robotcode-runner==0.93.0; extra == 'all'
43
+ Requires-Dist: robotcode-analyze==0.93.1; extra == 'all'
44
+ Requires-Dist: robotcode-debugger==0.93.1; extra == 'all'
45
+ Requires-Dist: robotcode-language-server==0.93.1; extra == 'all'
46
+ Requires-Dist: robotcode-repl==0.93.1; extra == 'all'
47
+ Requires-Dist: robotcode-runner==0.93.1; extra == 'all'
48
48
  Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
49
49
  Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
50
50
  Provides-Extra: analyze
51
- Requires-Dist: robotcode-analyze==0.93.0; extra == 'analyze'
51
+ Requires-Dist: robotcode-analyze==0.93.1; extra == 'analyze'
52
52
  Provides-Extra: colored
53
53
  Requires-Dist: rich; extra == 'colored'
54
54
  Provides-Extra: debugger
55
- Requires-Dist: robotcode-debugger==0.93.0; extra == 'debugger'
55
+ Requires-Dist: robotcode-debugger==0.93.1; extra == 'debugger'
56
56
  Provides-Extra: languageserver
57
- Requires-Dist: robotcode-language-server==0.93.0; extra == 'languageserver'
57
+ Requires-Dist: robotcode-language-server==0.93.1; extra == 'languageserver'
58
58
  Provides-Extra: lint
59
59
  Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
60
60
  Provides-Extra: repl
61
- Requires-Dist: robotcode-repl==0.93.0; extra == 'repl'
61
+ Requires-Dist: robotcode-repl==0.93.1; extra == 'repl'
62
62
  Provides-Extra: rest
63
63
  Requires-Dist: docutils; extra == 'rest'
64
64
  Provides-Extra: runner
65
- Requires-Dist: robotcode-runner==0.93.0; extra == 'runner'
65
+ Requires-Dist: robotcode-runner==0.93.1; extra == 'runner'
66
66
  Provides-Extra: tidy
67
67
  Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
68
68
  Provides-Extra: yaml
@@ -50,9 +50,9 @@ classifiers = [
50
50
  ]
51
51
  requires-python = ">=3.8"
52
52
  dependencies = [
53
- "robotcode-core==0.93.0",
54
- "robotcode-plugin==0.93.0",
55
- "robotcode-robot==0.93.0",
53
+ "robotcode-core==0.93.1",
54
+ "robotcode-plugin==0.93.1",
55
+ "robotcode-robot==0.93.1",
56
56
  ]
57
57
  dynamic = ["version"]
58
58
 
@@ -70,22 +70,22 @@ robotcode = "robotcode.cli.__main__:main"
70
70
 
71
71
 
72
72
  [project.optional-dependencies]
73
- debugger = ["robotcode-debugger==0.93.0"]
74
- languageserver = ["robotcode-language-server==0.93.0"]
75
- runner = ["robotcode-runner==0.93.0"]
76
- analyze = ["robotcode-analyze==0.93.0"]
73
+ debugger = ["robotcode-debugger==0.93.1"]
74
+ languageserver = ["robotcode-language-server==0.93.1"]
75
+ runner = ["robotcode-runner==0.93.1"]
76
+ analyze = ["robotcode-analyze==0.93.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
- repl = ["robotcode-repl==0.93.0"]
81
+ repl = ["robotcode-repl==0.93.1"]
82
82
  colored = ["rich"]
83
83
  all = [
84
- "robotcode-debugger==0.93.0",
85
- "robotcode-language-server==0.93.0",
86
- "robotcode-runner==0.93.0",
87
- "robotcode-analyze==0.93.0",
88
- "robotcode-repl==0.93.0",
84
+ "robotcode-debugger==0.93.1",
85
+ "robotcode-language-server==0.93.1",
86
+ "robotcode-runner==0.93.1",
87
+ "robotcode-analyze==0.93.1",
88
+ "robotcode-repl==0.93.1",
89
89
  "PyYAML>=5.4",
90
90
  "robotframework-robocop>=2.0.0",
91
91
  "robotframework-tidy>=2.0.0",
@@ -0,0 +1 @@
1
+ __version__ = "0.93.1"
@@ -1 +0,0 @@
1
- __version__ = "0.93.0"
File without changes
File without changes
File without changes
File without changes