Skip to content

Commit fd5d025

Browse files
committed
bump: version 0.64.1 → 0.65.0
1 parent 50384dc commit fd5d025

File tree

19 files changed

+47
-32
lines changed

19 files changed

+47
-32
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
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.65.0](https://github.com/d-biehl/robotcode/compare/v0.64.1..v0.65.0) - 2023-11-22
6+
7+
### Features
8+
9+
- **langserver:** Support for new VAR statement in RF7 ([2678884](https://github.com/d-biehl/robotcode/commit/2678884fedce733a3c6a52589c4b5f55fb2beda4))
10+
- **langserver:** Added new return type information of keyword from libdoc to documentation hover ([b91f2ff](https://github.com/d-biehl/robotcode/commit/b91f2ff5b5a369ac65f36f0222954e29c56ca2f7))
11+
12+
13+
### Refactor
14+
15+
- **jsonrpc:** Use concurrent.Futures instead of asyncio.Futures for request ([50384dc](https://github.com/d-biehl/robotcode/commit/50384dcc94b676c4c8b3a6a7f1e4881104d99999))
16+
- Some code cleanup and simplifications ([f799fb4](https://github.com/d-biehl/robotcode/commit/f799fb44090ded0fb0d12b0d4dbef8dbfdc28706))
17+
- Move markdown formatter to robotcode.robot.utils ([5a22bef](https://github.com/d-biehl/robotcode/commit/5a22bef05d015576742506423b13cd773a4d9c70))
18+
19+
520
## [0.64.1](https://github.com/d-biehl/robotcode/compare/v0.64.0..v0.64.1) - 2023-11-20
621

722
### 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.64.1",
7+
"version": "0.65.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.64.1",
31-
"robotcode-robot==0.64.1",
32-
"robotcode==0.64.1",
30+
"robotcode-plugin==0.65.0",
31+
"robotcode-robot==0.65.0",
32+
"robotcode==0.65.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.64.1"
1+
__version__ = "0.65.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.64.1"
1+
__version__ = "0.65.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.64.1",
32-
"robotcode-runner==0.64.1",
31+
"robotcode-jsonrpc2==0.65.0",
32+
"robotcode-runner==0.65.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.64.1"
1+
__version__ = "0.65.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.64.1"]
28+
dependencies = ["robotcode-core==0.65.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.64.1"
1+
__version__ = "0.65.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.64.1",
31-
"robotcode==0.64.1",
30+
"robotcode-jsonrpc2==0.65.0",
31+
"robotcode==0.65.0",
3232
]
3333
dynamic = ["version"]
3434

0 commit comments

Comments
 (0)