Skip to content

Commit

Permalink
chore(release): bump version 0.108.1 → 0.109.0
Browse files Browse the repository at this point in the history
  • Loading branch information
d-biehl committed Feb 10, 2025
1 parent 7aeb379 commit b554a63
Show file tree
Hide file tree
Showing 25 changed files with 71 additions and 49 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

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

## [0.109.0](https://github.com/robotcodedev/robotcode/compare/v0.108.1..v0.109.0) - 2025-02-10

### Bug Fixes

- **debugger:** Use 32-bit thread IDs for improved compatibility with some LSP clients ([5055763](https://github.com/robotcodedev/robotcode/commit/50557638c258b7496cbb4097b358ed1fe0075523))
- **debugger:** If there is already a debugpy adapter endpoint defined we don't need explicitly attach the python debugger ([7f3010a](https://github.com/robotcodedev/robotcode/commit/7f3010a92b8737f0f9608bedbeb166a95c96b46b))
- **intellij:** Stabilize test discovery at project startup ([7aeb379](https://github.com/robotcodedev/robotcode/commit/7aeb37974da360630d20416475ba407d39163cc5))
- **vscode,intellij:** Escape glob patterns in --suite and --parse-include arguments for discover and executing tests ([4007481](https://github.com/robotcodedev/robotcode/commit/40074816b4a87cb1fb1c4f937d215457fb2e905f))


### Features

- **robotcode:** Automatically create `.gitignore` in `.robotcode_cache` ([79d14e4](https://github.com/robotcodedev/robotcode/commit/79d14e4e0173527eabbd4cd119f36feacc7c18d5))

You no longer need to manually add `.robotcode_cache` to your `.gitignore` file, as it is now automatically ignored.
If you already have an existing `.robotcode_cache` folder, simply run the command `RobotCode: Clear Cache and Restart Language Servers`.
For IntelliJ-based platforms, you can find this command in the **RobotCode** menu under the **Tools** main menu.

- **vscode:** Add shell integration to run RobotCode in a VSCode terminal without requiring Python package installation ([febf5d8](https://github.com/robotcodedev/robotcode/commit/febf5d898c744df29f388173a06f1197e333efab))
- **vscode:** Use shell integration instead of full python command line to start repl if shell integration is enabled ([50426a2](https://github.com/robotcodedev/robotcode/commit/50426a26c700702d1eeeb85ca8e642f33a2b413c))


## [0.108.1](https://github.com/robotcodedev/robotcode/compare/v0.108.0..v0.108.1) - 2025-02-03

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion intellij-client/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = dev.robotcode
pluginName = RobotCode - Robot Framework Support
pluginRepositoryUrl = https://github.com/robotcodedev/robotcode4ij
# SemVer format -> https://semver.org
pluginVersion = 0.108.1
pluginVersion = 0.109.0

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 243
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.108.1",
"version": "0.109.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.108.1",
"robotcode-robot==0.108.1",
"robotcode==0.108.1",
"robotcode-plugin==0.109.0",
"robotcode-robot==0.109.0",
"robotcode==0.109.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.108.1"
__version__ = "0.109.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.108.1"
__version__ = "0.109.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.108.1",
"robotcode-runner==0.108.1",
"robotcode-jsonrpc2==0.109.0",
"robotcode-runner==0.109.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.108.1"
__version__ = "0.109.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.108.1"]
dependencies = ["robotcode-core==0.109.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.108.1"
__version__ = "0.109.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.108.1",
"robotcode-robot==0.108.1",
"robotcode-analyze==0.108.1",
"robotcode==0.108.1",
"robotcode-jsonrpc2==0.109.0",
"robotcode-robot==0.109.0",
"robotcode-analyze==0.109.0",
"robotcode==0.109.0",
]
dynamic = ["version"]

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.108.1"
__version__ = "0.109.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.108.1"
__version__ = "0.109.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.108.1"
__version__ = "0.109.0"
2 changes: 1 addition & 1 deletion packages/repl/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"robotcode-runner==0.108.1"
"robotcode-runner==0.109.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.108.1"
__version__ = "0.109.0"
4 changes: 2 additions & 2 deletions packages/repl_server/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.108.1",
"robotcode-runner==0.108.1"
"robotcode-jsonrpc2==0.109.0",
"robotcode-runner==0.109.0"
]

[project.entry-points.robotcode]
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.108.1"
__version__ = "0.109.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.108.1",
"robotcode-core==0.109.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.108.1"
__version__ = "0.109.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.108.1",
"robotcode-modifiers==0.108.1",
"robotcode-plugin==0.108.1",
"robotcode==0.108.1",
"robotcode-robot==0.109.0",
"robotcode-modifiers==0.109.0",
"robotcode-plugin==0.109.0",
"robotcode==0.109.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.108.1"
__version__ = "0.109.0"
30 changes: 15 additions & 15 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.108.1",
"robotcode-plugin==0.108.1",
"robotcode-robot==0.108.1",
"robotcode-core==0.109.0",
"robotcode-plugin==0.109.0",
"robotcode-robot==0.109.0",
]
dynamic = ["version"]

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


[project.optional-dependencies]
debugger = ["robotcode-debugger==0.108.1"]
languageserver = ["robotcode-language-server==0.108.1"]
runner = ["robotcode-runner==0.108.1"]
analyze = ["robotcode-analyze==0.108.1"]
debugger = ["robotcode-debugger==0.109.0"]
languageserver = ["robotcode-language-server==0.109.0"]
runner = ["robotcode-runner==0.109.0"]
analyze = ["robotcode-analyze==0.109.0"]
yaml = ["PyYAML>=5.4"]
lint = ["robotframework-robocop>=2.0.0"]
tidy = ["robotframework-tidy>=2.0.0"]
rest = ["docutils"]
repl = ["robotcode-repl==0.108.1"]
replserver = ["robotcode-repl-server==0.108.1"]
repl = ["robotcode-repl==0.109.0"]
replserver = ["robotcode-repl-server==0.109.0"]
colored = ["rich"]
all = [
"robotcode-debugger==0.108.1",
"robotcode-language-server==0.108.1",
"robotcode-runner==0.108.1",
"robotcode-analyze==0.108.1",
"robotcode-repl==0.108.1",
"robotcode-repl-server==0.108.1",
"robotcode-debugger==0.109.0",
"robotcode-language-server==0.109.0",
"robotcode-runner==0.109.0",
"robotcode-analyze==0.109.0",
"robotcode-repl==0.109.0",
"robotcode-repl-server==0.109.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.108.1"
__version__ = "0.109.0"

0 comments on commit b554a63

Please sign in to comment.