Skip to content

Commit

Permalink
chore(release): bump version 0.68.5 → 0.69.0
Browse files Browse the repository at this point in the history
  • Loading branch information
d-biehl committed Jan 24, 2024
1 parent f74ea4a commit 6112c27
Show file tree
Hide file tree
Showing 19 changed files with 50 additions and 33 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

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

## [0.69.0](https://github.com/d-biehl/robotcode/compare/v0.68.5..v0.69.0) - 2024-01-24

### Bug Fixes

- **langserver:** Display the return type in hover only when it is explicitly defined ([3fa09a7](https://github.com/d-biehl/robotcode/commit/3fa09a7cccee5170b400626876ca6f1bdcb984d8))
- **runner:** Environment vars are evaluated to late ([f74ea4a](https://github.com/d-biehl/robotcode/commit/f74ea4ac4f98aa04a1c342434b8b0e19559f4ea6))


### Features

- **langserver:** Start the internal HTTP server only on demand ([2254156](https://github.com/d-biehl/robotcode/commit/2254156c2109cd4fb80a12d615e2b79d78bcda5f))

You can disable this behaviour with the new option `robotcode.documentationServer.startOnDemand`.

- **vscode:** New keywords tree view in the explorer sidebar ([c0495e6](https://github.com/d-biehl/robotcode/commit/c0495e680e0d046a9e4937451e9a6b04ac28b268))


## [0.68.5](https://github.com/d-biehl/robotcode/compare/v0.68.4..v0.68.5) - 2024-01-21

### Bug Fixes
Expand Down
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.68.5",
"version": "0.69.0",
"author": {
"name": "Daniel Biehl",
"url": "https://github.com/d-biehl/"
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.68.5",
"robotcode-robot==0.68.5",
"robotcode==0.68.5",
"robotcode-plugin==0.69.0",
"robotcode-robot==0.69.0",
"robotcode==0.69.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.68.5"
__version__ = "0.69.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.68.5"
__version__ = "0.69.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.68.5",
"robotcode-runner==0.68.5",
"robotcode-jsonrpc2==0.69.0",
"robotcode-runner==0.69.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.68.5"
__version__ = "0.69.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.68.5"]
dependencies = ["robotcode-core==0.69.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.68.5"
__version__ = "0.69.0"
4 changes: 2 additions & 2 deletions packages/language_server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ classifiers = [
]
dependencies = [
"robotframework>=4.1.0",
"robotcode-jsonrpc2==0.68.5",
"robotcode==0.68.5",
"robotcode-jsonrpc2==0.69.0",
"robotcode==0.69.0",
]
dynamic = ["version"]

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.68.5"
__version__ = "0.69.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.68.5"
__version__ = "0.69.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.68.5"
__version__ = "0.69.0"
2 changes: 1 addition & 1 deletion packages/robot/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies = [
"robotframework>=4.1.0",
"tomli>=1.1.0; python_version < '3.11'",
"platformdirs>=3.2.0,<4.2.0",
"robotcode-core==0.68.5",
"robotcode-core==0.69.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.68.5"
__version__ = "0.69.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.68.5",
"robotcode-modifiers==0.68.5",
"robotcode-plugin==0.68.5",
"robotcode==0.68.5",
"robotcode-robot==0.69.0",
"robotcode-modifiers==0.69.0",
"robotcode-plugin==0.69.0",
"robotcode==0.69.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.68.5"
__version__ = "0.69.0"
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ classifiers = [
"Framework :: Robot Framework :: Tool",
]
requires-python = ">=3.8"
dependencies = ["robotcode-core==0.68.5"]
dependencies = ["robotcode-core==0.69.0"]
dynamic = ["version"]


Expand All @@ -66,20 +66,20 @@ robotcode = "robotcode.cli.__main__:main"


[project.optional-dependencies]
debugger = ["robotcode-debugger==0.68.5"]
languageserver = ["robotcode-language-server==0.68.5"]
runner = ["robotcode-runner==0.68.5"]
analyze = ["robotcode-analyze==0.68.5"]
debugger = ["robotcode-debugger==0.69.0"]
languageserver = ["robotcode-language-server==0.69.0"]
runner = ["robotcode-runner==0.69.0"]
analyze = ["robotcode-analyze==0.69.0"]
yaml = ["PyYAML>=5.4"]
lint = ["robotframework-robocop>=2.0.0"]
tidy = ["robotframework-tidy>=2.0.0"]
rest = ["docutils"]
colored = ["rich"]
all = [
"robotcode-debugger==0.68.5",
"robotcode-language-server==0.68.5",
"robotcode-runner==0.68.5",
"robotcode-analyze==0.68.5",
"robotcode-debugger==0.69.0",
"robotcode-language-server==0.69.0",
"robotcode-runner==0.69.0",
"robotcode-analyze==0.69.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.68.5"
__version__ = "0.69.0"

0 comments on commit 6112c27

Please sign in to comment.