Skip to content

Commit d67c57b

Browse files
committed
chore(release): bump version 0.66.1 → 0.67.0
1 parent edd0834 commit d67c57b

File tree

19 files changed

+60
-32
lines changed

19 files changed

+60
-32
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,34 @@
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.67.0](https://github.com/d-biehl/robotcode/compare/v0.66.1..v0.67.0) - 2023-12-13
6+
7+
### Bug Fixes
8+
9+
- **langserver:** Correted folding of IF blocks with multiple ELSE/ELSE IF's ([536db5e](https://github.com/d-biehl/robotcode/commit/536db5e7038ada87f37a6dce8fbf6d4c0d9fb0a0))
10+
- **langserver:** Unbound local variable in imports manager ([6d7b3d2](https://github.com/d-biehl/robotcode/commit/6d7b3d2e53b9e8766891332318b5085a797f40ca))
11+
- **vscode:** Don't show diagnostics when discover tests from a single file ([25024ac](https://github.com/d-biehl/robotcode/commit/25024ac4151571448b3ca465f90823d1761c336e))
12+
13+
14+
### Features
15+
16+
- **cli:** Introduce a command line switch to log to a file ([7a6b8af](https://github.com/d-biehl/robotcode/commit/7a6b8af39989b5c49e3350fea65f46ed496d0db8))
17+
- **debugger:** Lighter color for timestamps and respect the `--no-color' command line switch to disable colored output ([6f12eed](https://github.com/d-biehl/robotcode/commit/6f12eed78b03f5efc19a87c69c46254a8f1b1cc8))
18+
19+
20+
### Refactor
21+
22+
- **langserver:** Make documents handling synchronous and more threadsafe ([d1c72c2](https://github.com/d-biehl/robotcode/commit/d1c72c21b8fd7851c9743c23e3b98cd67d0e53dd))
23+
- **langserver,jsonrpc:** Use concurrent.futures.Future to send request, make register_capabilities syncronous ([41f495b](https://github.com/d-biehl/robotcode/commit/41f495b6d01300400365009d50123f2cf83914e3))
24+
25+
26+
### Testing
27+
28+
- **langserver:** Fix some regression tests ([0016ef6](https://github.com/d-biehl/robotcode/commit/0016ef6318b6587fb8e9f193d80e8a5da370538c))
29+
- **langserver:** Fix some regression tests ([fec9542](https://github.com/d-biehl/robotcode/commit/fec954287c534d2e98f8a798d7058426231a86ed))
30+
- **langserver:** Fix some more regression tests ([a399bd6](https://github.com/d-biehl/robotcode/commit/a399bd6e1bd9fae2f15a198ec1c75b49b814947b))
31+
32+
533
## [0.66.1](https://github.com/d-biehl/robotcode/compare/v0.66.0..v0.66.1) - 2023-11-24
634

735
### Bug Fixes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "RobotFramework support for Visual Studio Code",
55
"icon": "images/icon.png",
66
"publisher": "d-biehl",
7-
"version": "0.66.1",
7+
"version": "0.67.0",
88
"author": {
99
"name": "Daniel Biehl",
1010
"url": "https://github.com/d-biehl/"

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.66.1",
31-
"robotcode-robot==0.66.1",
32-
"robotcode==0.66.1",
30+
"robotcode-plugin==0.67.0",
31+
"robotcode-robot==0.67.0",
32+
"robotcode==0.67.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.66.1"
1+
__version__ = "0.67.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.66.1"
1+
__version__ = "0.67.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.66.1",
32-
"robotcode-runner==0.66.1",
31+
"robotcode-jsonrpc2==0.67.0",
32+
"robotcode-runner==0.67.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.66.1"
1+
__version__ = "0.67.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.66.1"]
28+
dependencies = ["robotcode-core==0.67.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.66.1"
1+
__version__ = "0.67.0"

packages/language_server/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ classifiers = [
2727
]
2828
dependencies = [
2929
"robotframework>=4.1.0",
30-
"robotcode-jsonrpc2==0.66.1",
31-
"robotcode==0.66.1",
30+
"robotcode-jsonrpc2==0.67.0",
31+
"robotcode==0.67.0",
3232
]
3333
dynamic = ["version"]
3434

0 commit comments

Comments
 (0)