Skip to content

Commit a36ba57

Browse files
committed
chore(release): bump version 0.76.2 → 0.77.0
1 parent dd77f3f commit a36ba57

File tree

20 files changed

+52
-36
lines changed

20 files changed

+52
-36
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
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.77.0](https://github.com/d-biehl/robotcode/compare/v0.76.2..v0.77.0) - 2024-03-04
6+
7+
### Bug Fixes
8+
9+
- **diagnostics:** Resolving variables does not work for builtin vars at library import ([6b97730](https://github.com/d-biehl/robotcode/commit/6b97730f1791482a9ca9e5dee847cf6a240c98e2))
10+
11+
12+
### Features
13+
14+
- **vscode:** Enable bracket coloring and matching in keyword arguments ([45243e5](https://github.com/d-biehl/robotcode/commit/45243e589ce44274aae58186071dbf271392d408))
15+
- **vscode:** Python syntax highlightning in `${{}}` expressions ([adf3627](https://github.com/d-biehl/robotcode/commit/adf36270ab7d39028ee1684e438cc42694af5e67))
16+
17+
this implements a part of #230
18+
19+
20+
521
## [0.76.2](https://github.com/d-biehl/robotcode/compare/v0.76.1..v0.76.2) - 2024-03-01
622

723
### Bug Fixes

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Robot Framework IntelliSense, linting, test execution and debugging, code formatting, refactoring, and many more",
55
"icon": "images/icon.png",
66
"publisher": "d-biehl",
7-
"version": "0.76.2",
7+
"version": "0.77.0",
88
"author": {
99
"name": "Daniel Biehl",
1010
"url": "https://github.com/d-biehl/"
@@ -1481,4 +1481,4 @@
14811481
"webpack": "^5.90.3",
14821482
"webpack-cli": "^5.1.4"
14831483
}
1484-
}
1484+
}

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

0 commit comments

Comments
 (0)