Skip to content

Commit

Permalink
chore(release): bump version 0.106.1 → 0.107.0
Browse files Browse the repository at this point in the history
  • Loading branch information
d-biehl committed Jan 21, 2025
1 parent a2c2760 commit 509639e
Show file tree
Hide file tree
Showing 25 changed files with 81 additions and 49 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@

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

## [0.107.0](https://github.com/robotcodedev/robotcode/compare/v0.106.1..v0.107.0) - 2025-01-21

### Bug Fixes

- **intellij:** Stabilized getting the correct python sdk for a project ([f8622ef](https://github.com/robotcodedev/robotcode/commit/f8622ef6eacfb6dc484044b465f281cba02ee0c3))


### Features

- **intellij:** Dynamic update of test run buttons on file and configuration changes ([da9687c](https://github.com/robotcodedev/robotcode/commit/da9687c0cd75270d6f7f397f776f230b3469a684))
- **intellij:** Implemented support for 4 spaces tab ([de83635](https://github.com/robotcodedev/robotcode/commit/de836356cd991cf09d315aaacad2ed1e94c433b9))

- this is enabled by default for robot files

- **intellij:** Support for highlight for python expressions ([a2c2760](https://github.com/robotcodedev/robotcode/commit/a2c276043f26303b4856dc13aed88cd2eea5432f))
- **langserver:** Support for workspace symbols ([a90ce60](https://github.com/robotcodedev/robotcode/commit/a90ce60250b9dc82c8a78bc910878171617c6a45))
- **langserver:** Support for workspace symbols ([66cb701](https://github.com/robotcodedev/robotcode/commit/66cb701620322bd248db053dcb3d0f598c76a93b))


### Refactor

- **robot:** Remove unused digest fields from KeywordDoc and LibraryDoc ([e550fb0](https://github.com/robotcodedev/robotcode/commit/e550fb0be816fed4a1d66d17ae3f02b059095713))


### Testing

- **langserver:** Correct some regression tests ([98fe4d0](https://github.com/robotcodedev/robotcode/commit/98fe4d0581170f71f6ed02a43f8bb4fb19699437))
- **langserver:** Corrected some regression tests ([1fa8e7a](https://github.com/robotcodedev/robotcode/commit/1fa8e7a6e43ea370db5821a9ba8549b88eafad6d))
- **langserver:** Corrected some more regression tests ([2c8e451](https://github.com/robotcodedev/robotcode/commit/2c8e451de333ae30c7d0c0716ef4ace23e2d8f6b))
- **langserver:** Corrected some more regression tests ([68bd93c](https://github.com/robotcodedev/robotcode/commit/68bd93cccd763290ff34021a18811f46340c94b9))


## [0.106.1](https://github.com/robotcodedev/robotcode/compare/v0.106.0..v0.106.1) - 2025-01-16

### 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.106.1
pluginVersion = 0.107.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.106.1",
"version": "0.107.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.106.1",
"robotcode-robot==0.106.1",
"robotcode==0.106.1",
"robotcode-plugin==0.107.0",
"robotcode-robot==0.107.0",
"robotcode==0.107.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.106.1"
__version__ = "0.107.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.106.1"
__version__ = "0.107.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.106.1",
"robotcode-runner==0.106.1",
"robotcode-jsonrpc2==0.107.0",
"robotcode-runner==0.107.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.106.1"
__version__ = "0.107.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.106.1"]
dependencies = ["robotcode-core==0.107.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.106.1"
__version__ = "0.107.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.106.1",
"robotcode-robot==0.106.1",
"robotcode-analyze==0.106.1",
"robotcode==0.106.1",
"robotcode-jsonrpc2==0.107.0",
"robotcode-robot==0.107.0",
"robotcode-analyze==0.107.0",
"robotcode==0.107.0",
]
dynamic = ["version"]

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.106.1"
__version__ = "0.107.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.106.1"
__version__ = "0.107.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.106.1"
__version__ = "0.107.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.106.1"
"robotcode-runner==0.107.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.106.1"
__version__ = "0.107.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.106.1",
"robotcode-runner==0.106.1"
"robotcode-jsonrpc2==0.107.0",
"robotcode-runner==0.107.0"
]

[project.entry-points.robotcode]
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.106.1"
__version__ = "0.107.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.106.1",
"robotcode-core==0.107.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.106.1"
__version__ = "0.107.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.106.1",
"robotcode-modifiers==0.106.1",
"robotcode-plugin==0.106.1",
"robotcode==0.106.1",
"robotcode-robot==0.107.0",
"robotcode-modifiers==0.107.0",
"robotcode-plugin==0.107.0",
"robotcode==0.107.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.106.1"
__version__ = "0.107.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.106.1",
"robotcode-plugin==0.106.1",
"robotcode-robot==0.106.1",
"robotcode-core==0.107.0",
"robotcode-plugin==0.107.0",
"robotcode-robot==0.107.0",
]
dynamic = ["version"]

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


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

0 comments on commit 509639e

Please sign in to comment.