robotcode 0.61.3__tar.gz → 0.61.6__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,6 +2,33 @@
2
2
 
3
3
  All notable changes to "robotcode" are documented in this file.
4
4
 
5
+ ## v0.61.6 (2023-10-20)
6
+
7
+ ### Fix
8
+
9
+ - **langserver**: correct handling of imports with the same namespace name
10
+
11
+ ### Refactor
12
+
13
+ - **langserver**: make package import relativ
14
+
15
+ ## v0.61.5 (2023-10-19)
16
+
17
+ ### Fix
18
+
19
+ - **langserver**: correct highlight, completion, analyze, etc. keyword calls with `.` that are also valid namespaces
20
+
21
+ ## v0.61.4 (2023-10-15)
22
+
23
+ ### Fix
24
+
25
+ - **langserver**: complete keywords containing `.` if there is no namespace with the name before the dot
26
+ - **discover**: normalize tags in tests command and sort tags
27
+
28
+ ### Perf
29
+
30
+ - **langserver**: speedup Visitor and AsyncVisitor a little bit
31
+
5
32
  ## v0.61.3 (2023-10-10)
6
33
 
7
34
  ### Perf
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: robotcode
3
- Version: 0.61.3
3
+ Version: 0.61.6
4
4
  Summary: Language server, debugger and tools for Robot Framework
5
5
  Project-URL: Homepage, https://robotcode.io
6
6
  Project-URL: Donate, https://github.com/sponsors/d-biehl
@@ -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-plugin==0.61.3
36
+ Requires-Dist: robotcode-plugin==0.61.6
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.61.3; extra == 'all'
42
- Requires-Dist: robotcode-debugger==0.61.3; extra == 'all'
43
- Requires-Dist: robotcode-language-server==0.61.3; extra == 'all'
44
- Requires-Dist: robotcode-runner==0.61.3; extra == 'all'
41
+ Requires-Dist: robotcode-analyze==0.61.6; extra == 'all'
42
+ Requires-Dist: robotcode-debugger==0.61.6; extra == 'all'
43
+ Requires-Dist: robotcode-language-server==0.61.6; extra == 'all'
44
+ Requires-Dist: robotcode-runner==0.61.6; 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.61.3; extra == 'analyze'
48
+ Requires-Dist: robotcode-analyze==0.61.6; 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.61.3; extra == 'debugger'
52
+ Requires-Dist: robotcode-debugger==0.61.6; extra == 'debugger'
53
53
  Provides-Extra: languageserver
54
- Requires-Dist: robotcode-language-server==0.61.3; extra == 'languageserver'
54
+ Requires-Dist: robotcode-language-server==0.61.6; 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.61.3; extra == 'runner'
60
+ Requires-Dist: robotcode-runner==0.61.6; extra == 'runner'
61
61
  Provides-Extra: tidy
62
62
  Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
63
63
  Provides-Extra: yaml
@@ -49,7 +49,7 @@ classifiers = [
49
49
  "Framework :: Robot Framework :: Tool",
50
50
  ]
51
51
  requires-python = ">=3.8"
52
- dependencies = ["robotcode-plugin==0.61.3"]
52
+ dependencies = ["robotcode-plugin==0.61.6"]
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.61.3"]
70
- languageserver = ["robotcode-language-server==0.61.3"]
71
- runner = ["robotcode-runner==0.61.3"]
72
- analyze = ["robotcode-analyze==0.61.3"]
69
+ debugger = ["robotcode-debugger==0.61.6"]
70
+ languageserver = ["robotcode-language-server==0.61.6"]
71
+ runner = ["robotcode-runner==0.61.6"]
72
+ analyze = ["robotcode-analyze==0.61.6"]
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.61.3",
80
- "robotcode-language-server==0.61.3",
81
- "robotcode-runner==0.61.3",
82
- "robotcode-analyze==0.61.3",
79
+ "robotcode-debugger==0.61.6",
80
+ "robotcode-language-server==0.61.6",
81
+ "robotcode-runner==0.61.6",
82
+ "robotcode-analyze==0.61.6",
83
83
  "PyYAML>=5.4",
84
84
  "robotframework-robocop>=2.0.0",
85
85
  "robotframework-tidy>=2.0.0",
@@ -0,0 +1 @@
1
+ __version__ = "0.61.6"
@@ -1 +0,0 @@
1
- __version__ = "0.61.3"
File without changes
File without changes
File without changes
File without changes