Skip to content

Commit

Permalink
chore(release): bump version 0.95.2 → 0.96.0
Browse files Browse the repository at this point in the history
  • Loading branch information
d-biehl committed Nov 4, 2024
1 parent c58f622 commit 7ce7941
Show file tree
Hide file tree
Showing 22 changed files with 58 additions and 44 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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

## [0.96.0](https://github.com/robotcodedev/robotcode/compare/v0.95.2..v0.96.0) - 2024-11-04

### Bug Fixes

- **vscode:** Corrected tmlanguage to color variables in variables section ([0e32e41](https://github.com/robotcodedev/robotcode/commit/0e32e4123a0b5ae73055c1ebcf1a9e2d8bb5d8ab))
- Corrected hash calculation for keyword matchers for keywords with embedded arguments for RF < 7 ([c58f622](https://github.com/robotcodedev/robotcode/commit/c58f622f1493d49d5b87e476b99965e3d2c935e6))


### Features

- **analyze:** Add command line support for static analysis of Robot Framework projects ([01a4c6d](https://github.com/robotcodedev/robotcode/commit/01a4c6dddc2c7ce7f2d4e63e31a5e3a01cec69f4))
- **vscode:** Connect vscode testrun to the debug session to link the lifecycle to of the session to the ui actions of the test run ([0d3bd27](https://github.com/robotcodedev/robotcode/commit/0d3bd272df53905942723069acc2dc6511674d3c))


## [0.95.2](https://github.com/robotcodedev/robotcode/compare/v0.95.1..v0.95.2) - 2024-10-28

### Performance
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Robot Framework IntelliSense, linting, test execution and debugging, code formatting, refactoring, and many more",
"icon": "images/icon.png",
"publisher": "d-biehl",
"version": "0.95.2",
"version": "0.96.0",
"author": {
"name": "Daniel Biehl",
"url": "https://github.com/robotcodedev/"
Expand Down
6 changes: 3 additions & 3 deletions packages/analyze/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ classifiers = [
]
dependencies = [
"robotframework>=4.1.0",
"robotcode-plugin==0.95.2",
"robotcode-robot==0.95.2",
"robotcode==0.95.2",
"robotcode-plugin==0.96.0",
"robotcode-robot==0.96.0",
"robotcode==0.96.0",
]
dynamic = ["version"]

Expand Down
2 changes: 1 addition & 1 deletion packages/analyze/src/robotcode/analyze/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.95.2"
__version__ = "0.96.0"
2 changes: 1 addition & 1 deletion packages/core/src/robotcode/core/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.95.2"
__version__ = "0.96.0"
4 changes: 2 additions & 2 deletions packages/debugger/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ classifiers = [
dynamic = ["version"]
dependencies = [
"robotframework>=4.1.0",
"robotcode-jsonrpc2==0.95.2",
"robotcode-runner==0.95.2",
"robotcode-jsonrpc2==0.96.0",
"robotcode-runner==0.96.0",
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion packages/debugger/src/robotcode/debugger/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.95.2"
__version__ = "0.96.0"
2 changes: 1 addition & 1 deletion packages/jsonrpc2/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers = [
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Tool",
]
dependencies = ["robotcode-core==0.95.2"]
dependencies = ["robotcode-core==0.96.0"]
dynamic = ["version"]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion packages/jsonrpc2/src/robotcode/jsonrpc2/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.95.2"
__version__ = "0.96.0"
8 changes: 4 additions & 4 deletions packages/language_server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ classifiers = [
]
dependencies = [
"robotframework>=4.1.0",
"robotcode-jsonrpc2==0.95.2",
"robotcode-robot==0.95.2",
"robotcode-analyze==0.95.2",
"robotcode==0.95.2",
"robotcode-jsonrpc2==0.96.0",
"robotcode-robot==0.96.0",
"robotcode-analyze==0.96.0",
"robotcode==0.96.0",
]
dynamic = ["version"]

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.95.2"
__version__ = "0.96.0"
2 changes: 1 addition & 1 deletion packages/modifiers/src/robotcode/modifiers/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.95.2"
__version__ = "0.96.0"
2 changes: 1 addition & 1 deletion packages/plugin/src/robotcode/plugin/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.95.2"
__version__ = "0.96.0"
4 changes: 2 additions & 2 deletions packages/repl/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"robotcode-jsonrpc2==0.95.2",
"robotcode-runner==0.95.2"
"robotcode-jsonrpc2==0.96.0",
"robotcode-runner==0.96.0"
]

[project.entry-points.robotcode]
Expand Down
2 changes: 1 addition & 1 deletion packages/repl/src/robotcode/repl/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.95.2"
__version__ = "0.96.0"
2 changes: 1 addition & 1 deletion packages/robot/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies = [
"robotframework>=4.1.0",
"tomli>=1.1.0; python_version < '3.11'",
"platformdirs>=3.2.0,<4.4.0",
"robotcode-core==0.95.2",
"robotcode-core==0.96.0",
]
dynamic = ["version"]

Expand Down
2 changes: 1 addition & 1 deletion packages/robot/src/robotcode/robot/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.95.2"
__version__ = "0.96.0"
8 changes: 4 additions & 4 deletions packages/runner/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ classifiers = [
dynamic = ["version"]
dependencies = [
"robotframework>=4.1.0",
"robotcode-robot==0.95.2",
"robotcode-modifiers==0.95.2",
"robotcode-plugin==0.95.2",
"robotcode==0.95.2",
"robotcode-robot==0.96.0",
"robotcode-modifiers==0.96.0",
"robotcode-plugin==0.96.0",
"robotcode==0.96.0",
]

[project.entry-points.robotcode]
Expand Down
2 changes: 1 addition & 1 deletion packages/runner/src/robotcode/runner/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.95.2"
__version__ = "0.96.0"
26 changes: 13 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ classifiers = [
]
requires-python = ">=3.8"
dependencies = [
"robotcode-core==0.95.2",
"robotcode-plugin==0.95.2",
"robotcode-robot==0.95.2",
"robotcode-core==0.96.0",
"robotcode-plugin==0.96.0",
"robotcode-robot==0.96.0",
]
dynamic = ["version"]

Expand All @@ -71,22 +71,22 @@ robotcode = "robotcode.cli.__main__:main"


[project.optional-dependencies]
debugger = ["robotcode-debugger==0.95.2"]
languageserver = ["robotcode-language-server==0.95.2"]
runner = ["robotcode-runner==0.95.2"]
analyze = ["robotcode-analyze==0.95.2"]
debugger = ["robotcode-debugger==0.96.0"]
languageserver = ["robotcode-language-server==0.96.0"]
runner = ["robotcode-runner==0.96.0"]
analyze = ["robotcode-analyze==0.96.0"]
yaml = ["PyYAML>=5.4"]
lint = ["robotframework-robocop>=2.0.0"]
tidy = ["robotframework-tidy>=2.0.0"]
rest = ["docutils"]
repl = ["robotcode-repl==0.95.2"]
repl = ["robotcode-repl==0.96.0"]
colored = ["rich"]
all = [
"robotcode-debugger==0.95.2",
"robotcode-language-server==0.95.2",
"robotcode-runner==0.95.2",
"robotcode-analyze==0.95.2",
"robotcode-repl==0.95.2",
"robotcode-debugger==0.96.0",
"robotcode-language-server==0.96.0",
"robotcode-runner==0.96.0",
"robotcode-analyze==0.96.0",
"robotcode-repl==0.96.0",
"PyYAML>=5.4",
"robotframework-robocop>=2.0.0",
"robotframework-tidy>=2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/robotcode/cli/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.95.2"
__version__ = "0.96.0"

0 comments on commit 7ce7941

Please sign in to comment.