Skip to content

Commit a5edea3

Browse files
committed
chore(release): bump version 0.72.0 → 0.73.0
1 parent 6519687 commit a5edea3

File tree

21 files changed

+70
-37
lines changed

21 files changed

+70
-37
lines changed

.vscode/launch.json

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,11 @@
4545
// "--no-pager",
4646
//"config", "info", "list",
4747
// "analyze",
48-
"-p", "ci",
49-
"profiles", "list", "-h"
48+
"-p",
49+
"ci",
50+
"profiles",
51+
"list",
52+
"-h"
5053
// "discover", "tests", "--tags"
5154
// "."
5255
]
@@ -158,6 +161,19 @@
158161
],
159162
"preLaunchTask": "npm: compile"
160163
},
164+
{
165+
"name": "Run Extension With Gherkin",
166+
"type": "extensionHost",
167+
"request": "launch",
168+
"args": [
169+
"--extensionDevelopmentPath=${workspaceFolder}",
170+
"--extensionDevelopmentPath=${workspaceFolder}/../robotframework-gherkin-parser",
171+
],
172+
"outFiles": [
173+
"${workspaceFolder}/out/**/*.js"
174+
],
175+
"preLaunchTask": "npm: compile"
176+
},
161177
{
162178
"name": "Extension Tests",
163179
"type": "extensionHost",
@@ -208,4 +224,4 @@
208224
"default": "5678",
209225
}
210226
]
211-
}
227+
}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
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.73.0](https://github.com/d-biehl/robotcode/compare/v0.72.0..v0.73.0) - 2024-02-05
6+
7+
### Bug Fixes
8+
9+
- **discover:** Don't show an error if no tests or suite are found ([f57b065](https://github.com/d-biehl/robotcode/commit/f57b065dd6ecda58176f2af5cb945daed7d1a3ea))
10+
- **vscode:** Trim and shorten long names and descriptions in `Select Configuration Profiles` command ([8abcb67](https://github.com/d-biehl/robotcode/commit/8abcb67cc697e0fcf3986b551727338887daeeff))
11+
- **vscode:** Stabilized recreation of test explorer items if folders are deleted ([370ff84](https://github.com/d-biehl/robotcode/commit/370ff847e644ff99d7563a5fbc04b81864dcb5f6))
12+
13+
14+
### Features
15+
16+
- **vscode:** Introduce robotcode contribution point for vscode extensions plugins ([6519687](https://github.com/d-biehl/robotcode/commit/6519687823cc7d955b4ea30439b4c436f5828b4c))
17+
18+
519
## [0.72.0](https://github.com/d-biehl/robotcode/compare/v0.71.1..v0.72.0) - 2024-02-01
620

721
### Bug Fixes

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.72.0",
7+
"version": "0.73.0",
88
"author": {
99
"name": "Daniel Biehl",
1010
"url": "https://github.com/d-biehl/"
@@ -1385,7 +1385,7 @@
13851385
"vscode-languageclient": "^9.0.1"
13861386
},
13871387
"devDependencies": {
1388-
"@types/node": "^18.15.11",
1388+
"@types/node": "^18.17.1",
13891389
"@types/vscode": "^1.82.0",
13901390
"@typescript-eslint/eslint-plugin": "^6.19.1",
13911391
"@typescript-eslint/parser": "^6.19.1",

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.72.0",
31-
"robotcode-robot==0.72.0",
32-
"robotcode==0.72.0",
30+
"robotcode-plugin==0.73.0",
31+
"robotcode-robot==0.73.0",
32+
"robotcode==0.73.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.72.0"
1+
__version__ = "0.73.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.72.0"
1+
__version__ = "0.73.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.72.0",
32-
"robotcode-runner==0.72.0",
31+
"robotcode-jsonrpc2==0.73.0",
32+
"robotcode-runner==0.73.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.72.0"
1+
__version__ = "0.73.0"

packages/debugger/src/robotcode/debugger/run.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ async def _debug_adapter_server_(
7575
) -> None:
7676
from .server import DebugAdapterServer
7777

78+
current_thread = threading.current_thread
79+
setattr(current_thread, "pydev_do_not_trace", True)
80+
7881
async with DebugAdapterServer(
7982
mode=mode,
8083
tcp_params=TcpParams(addresses or "127.0.0.1", port),

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.72.0"]
28+
dependencies = ["robotcode-core==0.73.0"]
2929
dynamic = ["version"]
3030

3131
[project.urls]

0 commit comments

Comments
 (0)