Skip to content

Commit 377d9c5

Browse files
committed
chore(release): bump version 0.73.3 → 0.74.0
1 parent 470b438 commit 377d9c5

File tree

20 files changed

+66
-45
lines changed

20 files changed

+66
-45
lines changed

.vscode/launch.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"configurations": [
88
{
99
"name": "Python: Debug in terminal",
10-
"type": "python",
10+
"type": "debugpy",
1111
"request": "launch",
1212
"purpose": [
1313
"debug-in-terminal"
@@ -16,7 +16,7 @@
1616
},
1717
{
1818
"name": "Python: RobotCode",
19-
"type": "python",
19+
"type": "debugpy",
2020
"request": "launch",
2121
"module": "robotcode.cli",
2222
"justMyCode": false,
@@ -56,14 +56,14 @@
5656
},
5757
{
5858
"name": "Python: Attach using Process Id",
59-
"type": "python",
59+
"type": "debugpy",
6060
"request": "attach",
6161
"processId": "${command:pickProcess}",
6262
"justMyCode": false
6363
},
6464
{
6565
"name": "Python: Current File",
66-
"type": "python",
66+
"type": "debugpy",
6767
"request": "launch",
6868
"program": "${file}",
6969
"console": "integratedTerminal",
@@ -72,7 +72,7 @@
7272
},
7373
{
7474
"name": "Python: Attach to 5678",
75-
"type": "python",
75+
"type": "debugpy",
7676
"request": "attach",
7777
"connect": {
7878
"host": "localhost",
@@ -84,7 +84,7 @@
8484
},
8585
{
8686
"name": "Python: Attach Prompt",
87-
"type": "python",
87+
"type": "debugpy",
8888
"request": "attach",
8989
"connect": {
9090
"host": "localhost",
@@ -93,7 +93,7 @@
9393
},
9494
{
9595
"name": "Python: Pytest All Test",
96-
"type": "python",
96+
"type": "debugpy",
9797
"request": "launch",
9898
"module": "pytest",
9999
"args": [
@@ -105,7 +105,7 @@
105105
},
106106
{
107107
"name": "Python: Pytest Some Test",
108-
"type": "python",
108+
"type": "debugpy",
109109
"request": "launch",
110110
"module": "pytest",
111111
"args": [
@@ -127,7 +127,7 @@
127127
},
128128
{
129129
"name": "Python: Pytest Current File",
130-
"type": "python",
130+
"type": "debugpy",
131131
"request": "launch",
132132
"module": "pytest",
133133
"args": [
@@ -139,7 +139,7 @@
139139
},
140140
{
141141
"name": "Python: robotcode language_server",
142-
"type": "python",
142+
"type": "debugpy",
143143
"request": "launch",
144144
"module": "robotcode.cli",
145145
"justMyCode": false,
@@ -190,7 +190,7 @@
190190
},
191191
{
192192
"name": "Python: Debug Tests",
193-
"type": "python",
193+
"type": "debugpy",
194194
"request": "launch",
195195
"program": "${file}",
196196
"purpose": [
@@ -201,7 +201,7 @@
201201
},
202202
{
203203
"name": "Python: Remote-Attach",
204-
"type": "python",
204+
"type": "debugpy",
205205
"request": "attach",
206206
"connect": {
207207
"host": "localhost",

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
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.74.0](https://github.com/d-biehl/robotcode/compare/v0.73.3..v0.74.0) - 2024-02-12
6+
7+
### Bug Fixes
8+
9+
- **debugger:** Filling zeros are now added to the name of an element so that elements are sorted correctly in the variable view at debugging time ([456ab2c](https://github.com/d-biehl/robotcode/commit/456ab2c0a30a490e3324d0376cd7fe651a1c2c4a))
10+
- **debugger:** Add `BuiltIn.Run Keyword And Return Status` to the list of keywords that caught exceptions on inner keywords ([add8297](https://github.com/d-biehl/robotcode/commit/add8297e851f1226dd980fa543bb4c9f124ad441))
11+
- **langserver:** Correct importing variables with the same filename ([e1ac0cb](https://github.com/d-biehl/robotcode/commit/e1ac0cb5ed439fce3e8c9c2dad19ded4c1726eb4))
12+
13+
closes [BUG] Variables from variable files are often displayed as not found #214
14+
15+
- **robot:** Handle OSErrors if creating/reading user robot.toml ([470b438](https://github.com/d-biehl/robotcode/commit/470b438778f2c82c31de08e39b75d7663a5fe504))
16+
17+
should fix: #187
18+
19+
20+
21+
### Features
22+
23+
- **vscode:** Organize vscode settings in groups ([9bbe68b](https://github.com/d-biehl/robotcode/commit/9bbe68bcd9ba718d8293c27ee3e64a6d9cd792a4))
24+
25+
526
## [0.73.3](https://github.com/d-biehl/robotcode/compare/v0.73.2..v0.73.3) - 2024-02-07
627

728
### Bug Fixes

package.json

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.73.3"
1+
__version__ = "0.74.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.73.3"
1+
__version__ = "0.74.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.73.3"
1+
__version__ = "0.74.0"

packages/robot/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies = [
2929
"robotframework>=4.1.0",
3030
"tomli>=1.1.0; python_version < '3.11'",
3131
"platformdirs>=3.2.0,<4.2.0",
32-
"robotcode-core==0.73.3",
32+
"robotcode-core==0.74.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.73.3"
1+
__version__ = "0.74.0"

packages/runner/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ classifiers = [
2828
dynamic = ["version"]
2929
dependencies = [
3030
"robotframework>=4.1.0",
31-
"robotcode-robot==0.73.3",
32-
"robotcode-modifiers==0.73.3",
33-
"robotcode-plugin==0.73.3",
34-
"robotcode==0.73.3",
31+
"robotcode-robot==0.74.0",
32+
"robotcode-modifiers==0.74.0",
33+
"robotcode-plugin==0.74.0",
34+
"robotcode==0.74.0",
3535
]
3636

3737
[project.entry-points.robotcode]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.73.3"
1+
__version__ = "0.74.0"

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ classifiers = [
4949
"Framework :: Robot Framework :: Tool",
5050
]
5151
requires-python = ">=3.8"
52-
dependencies = ["robotcode-core==0.73.3"]
52+
dependencies = ["robotcode-core==0.74.0"]
5353
dynamic = ["version"]
5454

5555

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

6767

6868
[project.optional-dependencies]
69-
debugger = ["robotcode-debugger==0.73.3"]
70-
languageserver = ["robotcode-language-server==0.73.3"]
71-
runner = ["robotcode-runner==0.73.3"]
72-
analyze = ["robotcode-analyze==0.73.3"]
69+
debugger = ["robotcode-debugger==0.74.0"]
70+
languageserver = ["robotcode-language-server==0.74.0"]
71+
runner = ["robotcode-runner==0.74.0"]
72+
analyze = ["robotcode-analyze==0.74.0"]
7373
yaml = ["PyYAML>=5.4"]
7474
lint = ["robotframework-robocop>=2.0.0"]
7575
tidy = ["robotframework-tidy>=2.0.0"]
7676
rest = ["docutils"]
7777
colored = ["rich"]
7878
all = [
79-
"robotcode-debugger==0.73.3",
80-
"robotcode-language-server==0.73.3",
81-
"robotcode-runner==0.73.3",
82-
"robotcode-analyze==0.73.3",
79+
"robotcode-debugger==0.74.0",
80+
"robotcode-language-server==0.74.0",
81+
"robotcode-runner==0.74.0",
82+
"robotcode-analyze==0.74.0",
8383
"PyYAML>=5.4",
8484
"robotframework-robocop>=2.0.0",
8585
"robotframework-tidy>=2.0.0",

src/robotcode/cli/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.73.3"
1+
__version__ = "0.74.0"

0 commit comments

Comments
 (0)