robotcode 0.68.3__tar.gz → 0.69.0__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,6 +2,50 @@
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.69.0](https://github.com/d-biehl/robotcode/compare/v0.68.5..v0.69.0) - 2024-01-24
6
+
7
+ ### Bug Fixes
8
+
9
+ - **langserver:** Display the return type in hover only when it is explicitly defined ([3fa09a7](https://github.com/d-biehl/robotcode/commit/3fa09a7cccee5170b400626876ca6f1bdcb984d8))
10
+ - **runner:** Environment vars are evaluated to late ([f74ea4a](https://github.com/d-biehl/robotcode/commit/f74ea4ac4f98aa04a1c342434b8b0e19559f4ea6))
11
+
12
+
13
+ ### Features
14
+
15
+ - **langserver:** Start the internal HTTP server only on demand ([2254156](https://github.com/d-biehl/robotcode/commit/2254156c2109cd4fb80a12d615e2b79d78bcda5f))
16
+
17
+ You can disable this behaviour with the new option `robotcode.documentationServer.startOnDemand`.
18
+
19
+ - **vscode:** New keywords tree view in the explorer sidebar ([c0495e6](https://github.com/d-biehl/robotcode/commit/c0495e680e0d046a9e4937451e9a6b04ac28b268))
20
+
21
+
22
+ ## [0.68.5](https://github.com/d-biehl/robotcode/compare/v0.68.4..v0.68.5) - 2024-01-21
23
+
24
+ ### Bug Fixes
25
+
26
+ - **langserver:** Filewatcher does not work ([5b72148](https://github.com/d-biehl/robotcode/commit/5b7214824eb51bab6d1adaec97f177f152fde0bf))
27
+
28
+
29
+ ## [0.68.4](https://github.com/d-biehl/robotcode/compare/v0.68.3..v0.68.4) - 2024-01-20
30
+
31
+ ### Bug Fixes
32
+
33
+ - **langserver:** Start langserver should not raise a TypeError if startet with no config ([5eca367](https://github.com/d-biehl/robotcode/commit/5eca367f87d27fd0bfe99023f21db7e137af2c37))
34
+
35
+
36
+ ### Documentation
37
+
38
+ - Change description of package ([f6a4f79](https://github.com/d-biehl/robotcode/commit/f6a4f79df13b72b36cb5958f467ac3c2d75eae66))
39
+ - Create CONTRIBUTING.md and review CODE_OF_CONDUCT.md ([a107b95](https://github.com/d-biehl/robotcode/commit/a107b95b3fc40b76abfe74972b5f0e254cbfabe4))
40
+
41
+
42
+ ### Refactor
43
+
44
+ - **langserver:** Remove unused maxProjectFileCount setting ([4f4ad31](https://github.com/d-biehl/robotcode/commit/4f4ad318d67fe784db13fece70fbd79e3ccedb00))
45
+ - **langserver:** Move TextDocument from langserver to core package, some other simple refactorings ([d60977b](https://github.com/d-biehl/robotcode/commit/d60977bb9ccab4b09a6e69b2ba71dd7a2ae5d2f1))
46
+ - Move diagnostics helper code to robotcode.robot package ([c94edb3](https://github.com/d-biehl/robotcode/commit/c94edb306132daddccd6fd9e64343914aafa868a))
47
+
48
+
5
49
  ## [0.68.3](https://github.com/d-biehl/robotcode/compare/v0.68.2..v0.68.3) - 2024-01-11
6
50
 
7
51
  ### Bug Fixes
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: robotcode
3
- Version: 0.68.3
4
- Summary: Language server, debugger and tools for Robot Framework
3
+ Version: 0.69.0
4
+ Summary: Command line interface for RobotCode
5
5
  Project-URL: Homepage, https://robotcode.io
6
6
  Project-URL: Donate, https://github.com/sponsors/d-biehl
7
7
  Project-URL: Documentation, https://github.com/d-biehl/robotcode#readme
@@ -33,31 +33,31 @@ 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.68.3
36
+ Requires-Dist: robotcode-core==0.69.0
37
37
  Provides-Extra: all
38
38
  Requires-Dist: docutils; extra == 'all'
39
39
  Requires-Dist: pyyaml>=5.4; extra == 'all'
40
40
  Requires-Dist: rich; extra == 'all'
41
- Requires-Dist: robotcode-analyze==0.68.3; extra == 'all'
42
- Requires-Dist: robotcode-debugger==0.68.3; extra == 'all'
43
- Requires-Dist: robotcode-language-server==0.68.3; extra == 'all'
44
- Requires-Dist: robotcode-runner==0.68.3; extra == 'all'
41
+ Requires-Dist: robotcode-analyze==0.69.0; extra == 'all'
42
+ Requires-Dist: robotcode-debugger==0.69.0; extra == 'all'
43
+ Requires-Dist: robotcode-language-server==0.69.0; extra == 'all'
44
+ Requires-Dist: robotcode-runner==0.69.0; extra == 'all'
45
45
  Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
46
46
  Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
47
47
  Provides-Extra: analyze
48
- Requires-Dist: robotcode-analyze==0.68.3; extra == 'analyze'
48
+ Requires-Dist: robotcode-analyze==0.69.0; extra == 'analyze'
49
49
  Provides-Extra: colored
50
50
  Requires-Dist: rich; extra == 'colored'
51
51
  Provides-Extra: debugger
52
- Requires-Dist: robotcode-debugger==0.68.3; extra == 'debugger'
52
+ Requires-Dist: robotcode-debugger==0.69.0; extra == 'debugger'
53
53
  Provides-Extra: languageserver
54
- Requires-Dist: robotcode-language-server==0.68.3; extra == 'languageserver'
54
+ Requires-Dist: robotcode-language-server==0.69.0; extra == 'languageserver'
55
55
  Provides-Extra: lint
56
56
  Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
57
57
  Provides-Extra: rest
58
58
  Requires-Dist: docutils; extra == 'rest'
59
59
  Provides-Extra: runner
60
- Requires-Dist: robotcode-runner==0.68.3; extra == 'runner'
60
+ Requires-Dist: robotcode-runner==0.69.0; extra == 'runner'
61
61
  Provides-Extra: tidy
62
62
  Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
63
63
  Provides-Extra: yaml
@@ -83,7 +83,7 @@ matrix.rf.dependencies = [
83
83
  { value = "robotframework>=6.1, <7.0", if = [
84
84
  "rf61",
85
85
  ] },
86
- { value = "robotframework==7.0rc1", if = [
86
+ { value = "robotframework>=7.0, <7.1", if = [
87
87
  "rf70",
88
88
  ] },
89
89
  ]
@@ -105,7 +105,7 @@ matrix.rf.dependencies = [
105
105
  { value = "robotframework>=6.1, <7.0", if = [
106
106
  "rf61",
107
107
  ] },
108
- { value = "robotframework==7.0rc1", if = [
108
+ { value = "robotframework>=7.0, <7.1", if = [
109
109
  "rf70",
110
110
  ] },
111
111
  ]
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
5
5
 
6
6
  [project]
7
7
  name = "robotcode"
8
- description = "Language server, debugger and tools for Robot Framework"
8
+ description = "Command line interface for RobotCode"
9
9
  authors = [{ name = "Daniel Biehl", email = "dbiehl@live.de" }]
10
10
  readme = { "file" = "README.md", "content-type" = "text/markdown" }
11
11
  license = { text = "Apache-2.0" }
@@ -49,7 +49,7 @@ classifiers = [
49
49
  "Framework :: Robot Framework :: Tool",
50
50
  ]
51
51
  requires-python = ">=3.8"
52
- dependencies = ["robotcode-core==0.68.3"]
52
+ dependencies = ["robotcode-core==0.69.0"]
53
53
  dynamic = ["version"]
54
54
 
55
55
 
@@ -66,20 +66,20 @@ robotcode = "robotcode.cli.__main__:main"
66
66
 
67
67
 
68
68
  [project.optional-dependencies]
69
- debugger = ["robotcode-debugger==0.68.3"]
70
- languageserver = ["robotcode-language-server==0.68.3"]
71
- runner = ["robotcode-runner==0.68.3"]
72
- analyze = ["robotcode-analyze==0.68.3"]
69
+ debugger = ["robotcode-debugger==0.69.0"]
70
+ languageserver = ["robotcode-language-server==0.69.0"]
71
+ runner = ["robotcode-runner==0.69.0"]
72
+ analyze = ["robotcode-analyze==0.69.0"]
73
73
  yaml = ["PyYAML>=5.4"]
74
74
  lint = ["robotframework-robocop>=2.0.0"]
75
75
  tidy = ["robotframework-tidy>=2.0.0"]
76
76
  rest = ["docutils"]
77
77
  colored = ["rich"]
78
78
  all = [
79
- "robotcode-debugger==0.68.3",
80
- "robotcode-language-server==0.68.3",
81
- "robotcode-runner==0.68.3",
82
- "robotcode-analyze==0.68.3",
79
+ "robotcode-debugger==0.69.0",
80
+ "robotcode-language-server==0.69.0",
81
+ "robotcode-runner==0.69.0",
82
+ "robotcode-analyze==0.69.0",
83
83
  "PyYAML>=5.4",
84
84
  "robotframework-robocop>=2.0.0",
85
85
  "robotframework-tidy>=2.0.0",
@@ -266,6 +266,7 @@ module = [
266
266
  "pluggy",
267
267
  ]
268
268
  ignore_missing_imports = true
269
+ no_implicit_reexport = false
269
270
 
270
271
 
271
272
  # [tool.hatch.build.targets.wheel.hooks.mypyc]
@@ -0,0 +1 @@
1
+ __version__ = "0.69.0"
@@ -1 +0,0 @@
1
- __version__ = "0.68.3"
File without changes
File without changes
File without changes