robotcode 0.78.0__tar.gz → 0.78.1__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.78.1](https://github.com/d-biehl/robotcode/compare/v0.78.0..v0.78.1) - 2024-03-15
6
+
7
+ ### Bug Fixes
8
+
9
+ - **analyze:** If a imported resource has import errors it is shown as releated information ([caf8541](https://github.com/d-biehl/robotcode/commit/caf8541c76e98bbd3ece931be31e00b388634d3a))
10
+ - **langserver:** Hovering over `EMPTY` builtin variable respects the type and shows correct empty values ([c8b66c8](https://github.com/d-biehl/robotcode/commit/c8b66c8fcd05d18ee1d27b79f20bc8d2ff51dc44))
11
+ - **profiles:** Profiles inherited by `[profile].inherit` are now merged before the parent profile, unless the `precedence` is set and are only enabled if the parent profile is enabled ([318d780](https://github.com/d-biehl/robotcode/commit/318d780d9e04b7cfae42a1616af76af56317b320))
12
+
13
+
5
14
  ## [0.78.0](https://github.com/d-biehl/robotcode/compare/v0.77.1..v0.78.0) - 2024-03-07
6
15
 
7
16
  ### Bug Fixes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: robotcode
3
- Version: 0.78.0
3
+ Version: 0.78.1
4
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
@@ -33,32 +33,32 @@ 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.78.0
37
- Requires-Dist: robotcode-plugin==0.78.0
36
+ Requires-Dist: robotcode-core==0.78.1
37
+ Requires-Dist: robotcode-plugin==0.78.1
38
38
  Provides-Extra: all
39
39
  Requires-Dist: docutils; extra == 'all'
40
40
  Requires-Dist: pyyaml>=5.4; extra == 'all'
41
41
  Requires-Dist: rich; extra == 'all'
42
- Requires-Dist: robotcode-analyze==0.78.0; extra == 'all'
43
- Requires-Dist: robotcode-debugger==0.78.0; extra == 'all'
44
- Requires-Dist: robotcode-language-server==0.78.0; extra == 'all'
45
- Requires-Dist: robotcode-runner==0.78.0; extra == 'all'
42
+ Requires-Dist: robotcode-analyze==0.78.1; extra == 'all'
43
+ Requires-Dist: robotcode-debugger==0.78.1; extra == 'all'
44
+ Requires-Dist: robotcode-language-server==0.78.1; extra == 'all'
45
+ Requires-Dist: robotcode-runner==0.78.1; extra == 'all'
46
46
  Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
47
47
  Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
48
48
  Provides-Extra: analyze
49
- Requires-Dist: robotcode-analyze==0.78.0; extra == 'analyze'
49
+ Requires-Dist: robotcode-analyze==0.78.1; extra == 'analyze'
50
50
  Provides-Extra: colored
51
51
  Requires-Dist: rich; extra == 'colored'
52
52
  Provides-Extra: debugger
53
- Requires-Dist: robotcode-debugger==0.78.0; extra == 'debugger'
53
+ Requires-Dist: robotcode-debugger==0.78.1; extra == 'debugger'
54
54
  Provides-Extra: languageserver
55
- Requires-Dist: robotcode-language-server==0.78.0; extra == 'languageserver'
55
+ Requires-Dist: robotcode-language-server==0.78.1; extra == 'languageserver'
56
56
  Provides-Extra: lint
57
57
  Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
58
58
  Provides-Extra: rest
59
59
  Requires-Dist: docutils; extra == 'rest'
60
60
  Provides-Extra: runner
61
- Requires-Dist: robotcode-runner==0.78.0; extra == 'runner'
61
+ Requires-Dist: robotcode-runner==0.78.1; extra == 'runner'
62
62
  Provides-Extra: tidy
63
63
  Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
64
64
  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-core==0.78.0", "robotcode-plugin==0.78.0"]
52
+ dependencies = ["robotcode-core==0.78.1", "robotcode-plugin==0.78.1"]
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.78.0"]
70
- languageserver = ["robotcode-language-server==0.78.0"]
71
- runner = ["robotcode-runner==0.78.0"]
72
- analyze = ["robotcode-analyze==0.78.0"]
69
+ debugger = ["robotcode-debugger==0.78.1"]
70
+ languageserver = ["robotcode-language-server==0.78.1"]
71
+ runner = ["robotcode-runner==0.78.1"]
72
+ analyze = ["robotcode-analyze==0.78.1"]
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.78.0",
80
- "robotcode-language-server==0.78.0",
81
- "robotcode-runner==0.78.0",
82
- "robotcode-analyze==0.78.0",
79
+ "robotcode-debugger==0.78.1",
80
+ "robotcode-language-server==0.78.1",
81
+ "robotcode-runner==0.78.1",
82
+ "robotcode-analyze==0.78.1",
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.78.1"
@@ -1 +0,0 @@
1
- __version__ = "0.78.0"
File without changes
File without changes
File without changes
File without changes