Skip to content

Commit 21f9910

Browse files
committed
chore(release): bump version 0.91.0 → 0.92.0
1 parent c8644d6 commit 21f9910

File tree

20 files changed

+65
-40
lines changed

20 files changed

+65
-40
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22

33
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
44

5+
## [0.92.0](https://github.com/robotcodedev/robotcode/compare/v0.91.0..v0.92.0) - 2024-10-01
6+
7+
### Features
8+
9+
- **analyze:** Allow shortforms of `warning` and `information`, `warn` and `info` in diagnostic modifiers ([f226091](https://github.com/robotcodedev/robotcode/commit/f226091e59b0fff2858de7311d542b903c5bf2d3))
10+
- **config:** Added posibility to allow different tool configs to robot.toml.json schema ([ee256ce](https://github.com/robotcodedev/robotcode/commit/ee256ce38b39ae67ae107bb5fffa5dba8d8d7db4))
11+
- **robot.toml:** Introduce new settings for analysis in robot.toml ([fa37dba](https://github.com/robotcodedev/robotcode/commit/fa37dba7ccfebf9d221b6985a12e460e27209f64))
12+
- **vscode:** Introduce setting for modifing the diagnostics severity ([5cca59f](https://github.com/robotcodedev/robotcode/commit/5cca59fd364cb1c6a8a8c6f0e63a956bca88e366))
13+
14+
With these settings, you can override the default configuration for all diagnostic messages. By combining file, block, and line diagnostic modifiers, you can precisely control how specific errors are displayed.
15+
16+
- **`robotcode.analysis.diagnosticModifiers.ignore`**: Suppresses specific diagnostics from being displayed. You can specify one or more error codes, like `MultipleKeywords` or `[multiple-keywords, VariableNotFound]`. Use `*` to ignore all errors and then maybe add specific error codes to other modifiers, such as `information`, to selectively show them.
17+
- **`robotcode.analysis.diagnosticModifiers.error`**: Treats selected diagnostics as errors.
18+
- **`robotcode.analysis.diagnosticModifiers.warning`**: Displays chosen diagnostics as warnings.
19+
- **`robotcode.analysis.diagnosticModifiers.information`**: Shows specified diagnostics as information
20+
- **`robotcode.analysis.diagnosticModifiers.hint`**: Marks selected diagnostics as hints
21+
22+
These settings allow you to tailor the diagnostic outputs to meet the specific needs of your project.
23+
24+
- Introduce `Select Python Environment` command and deprecate `robotcode.python` ([be0573d](https://github.com/robotcodedev/robotcode/commit/be0573ddcfaf1100de8058bc6383a013eaf4ee88))
25+
26+
27+
See [here](https://github.com/microsoft/vscode-python/wiki/Setting-descriptions#pythondefaultinterpreterpath) for an explanation.
28+
29+
530
## [0.91.0](https://github.com/robotcodedev/robotcode/compare/v0.90.0..v0.91.0) - 2024-09-27
631

732
### Bug Fixes

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Robot Framework IntelliSense, linting, test execution and debugging, code formatting, refactoring, and many more",
55
"icon": "images/icon.png",
66
"publisher": "d-biehl",
7-
"version": "0.91.0",
7+
"version": "0.92.0",
88
"author": {
99
"name": "Daniel Biehl",
1010
"url": "https://github.com/robotcodedev/"
@@ -1650,4 +1650,4 @@
16501650
"workspaces": [
16511651
"docs"
16521652
]
1653-
}
1653+
}

packages/analyze/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ classifiers = [
2727
]
2828
dependencies = [
2929
"robotframework>=4.1.0",
30-
"robotcode-plugin==0.91.0",
31-
"robotcode-robot==0.91.0",
32-
"robotcode==0.91.0",
30+
"robotcode-plugin==0.92.0",
31+
"robotcode-robot==0.92.0",
32+
"robotcode==0.92.0",
3333
]
3434
dynamic = ["version"]
3535

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.91.0"
1+
__version__ = "0.92.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.91.0"
1+
__version__ = "0.92.0"

packages/debugger/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ classifiers = [
2828
dynamic = ["version"]
2929
dependencies = [
3030
"robotframework>=4.1.0",
31-
"robotcode-jsonrpc2==0.91.0",
32-
"robotcode-runner==0.91.0",
31+
"robotcode-jsonrpc2==0.92.0",
32+
"robotcode-runner==0.92.0",
3333
]
3434

3535
[project.optional-dependencies]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.91.0"
1+
__version__ = "0.92.0"

packages/jsonrpc2/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ classifiers = [
2525
"Framework :: Robot Framework",
2626
"Framework :: Robot Framework :: Tool",
2727
]
28-
dependencies = ["robotcode-core==0.91.0"]
28+
dependencies = ["robotcode-core==0.92.0"]
2929
dynamic = ["version"]
3030

3131
[project.urls]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.91.0"
1+
__version__ = "0.92.0"

packages/language_server/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ classifiers = [
2727
]
2828
dependencies = [
2929
"robotframework>=4.1.0",
30-
"robotcode-jsonrpc2==0.91.0",
31-
"robotcode-robot==0.91.0",
32-
"robotcode-analyze==0.91.0",
33-
"robotcode==0.91.0",
30+
"robotcode-jsonrpc2==0.92.0",
31+
"robotcode-robot==0.92.0",
32+
"robotcode-analyze==0.92.0",
33+
"robotcode==0.92.0",
3434
]
3535
dynamic = ["version"]
3636

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.91.0"
1+
__version__ = "0.92.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.91.0"
1+
__version__ = "0.92.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.91.0"
1+
__version__ = "0.92.0"

packages/robot/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies = [
2929
"robotframework>=4.1.0",
3030
"tomli>=1.1.0; python_version < '3.11'",
3131
"platformdirs>=3.2.0,<4.2.0",
32-
"robotcode-core==0.91.0",
32+
"robotcode-core==0.92.0",
3333
]
3434
dynamic = ["version"]
3535

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.91.0"
1+
__version__ = "0.92.0"

packages/runner/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ classifiers = [
2828
dynamic = ["version"]
2929
dependencies = [
3030
"robotframework>=4.1.0",
31-
"robotcode-robot==0.91.0",
32-
"robotcode-modifiers==0.91.0",
33-
"robotcode-plugin==0.91.0",
34-
"robotcode==0.91.0",
31+
"robotcode-robot==0.92.0",
32+
"robotcode-modifiers==0.92.0",
33+
"robotcode-plugin==0.92.0",
34+
"robotcode==0.92.0",
3535
]
3636

3737
[project.entry-points.robotcode]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.91.0"
1+
__version__ = "0.92.0"

pyproject.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ classifiers = [
5050
]
5151
requires-python = ">=3.8"
5252
dependencies = [
53-
"robotcode-core==0.91.0",
54-
"robotcode-plugin==0.91.0",
55-
"robotcode-robot==0.91.0",
53+
"robotcode-core==0.92.0",
54+
"robotcode-plugin==0.92.0",
55+
"robotcode-robot==0.92.0",
5656
]
5757
dynamic = ["version"]
5858

@@ -70,20 +70,20 @@ robotcode = "robotcode.cli.__main__:main"
7070

7171

7272
[project.optional-dependencies]
73-
debugger = ["robotcode-debugger==0.91.0"]
74-
languageserver = ["robotcode-language-server==0.91.0"]
75-
runner = ["robotcode-runner==0.91.0"]
76-
analyze = ["robotcode-analyze==0.91.0"]
73+
debugger = ["robotcode-debugger==0.92.0"]
74+
languageserver = ["robotcode-language-server==0.92.0"]
75+
runner = ["robotcode-runner==0.92.0"]
76+
analyze = ["robotcode-analyze==0.92.0"]
7777
yaml = ["PyYAML>=5.4"]
7878
lint = ["robotframework-robocop>=2.0.0"]
7979
tidy = ["robotframework-tidy>=2.0.0"]
8080
rest = ["docutils"]
8181
colored = ["rich"]
8282
all = [
83-
"robotcode-debugger==0.91.0",
84-
"robotcode-language-server==0.91.0",
85-
"robotcode-runner==0.91.0",
86-
"robotcode-analyze==0.91.0",
83+
"robotcode-debugger==0.92.0",
84+
"robotcode-language-server==0.92.0",
85+
"robotcode-runner==0.92.0",
86+
"robotcode-analyze==0.92.0",
8787
"PyYAML>=5.4",
8888
"robotframework-robocop>=2.0.0",
8989
"robotframework-tidy>=2.0.0",

src/robotcode/cli/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.91.0"
1+
__version__ = "0.92.0"

0 commit comments

Comments
 (0)