Skip to content

Commit de57e81

Browse files
committed
chore(release): bump version 0.75.0 → 0.76.0
1 parent bb55ff4 commit de57e81

File tree

20 files changed

+67
-36
lines changed

20 files changed

+67
-36
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,37 @@
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.76.0](https://github.com/d-biehl/robotcode/compare/v0.75.0..v0.76.0) - 2024-02-19
6+
7+
### Bug Fixes
8+
9+
- **langserver:** Add duplicated imports to references ([e603628](https://github.com/d-biehl/robotcode/commit/e603628f599c361e13b2f09acf236c30d3822496))
10+
- **langserver:** Correct variable handling from resource imports ([619eee4](https://github.com/d-biehl/robotcode/commit/619eee4c879fcc586b8b8be396cb141c0488cdf4))
11+
- **vscode:** Correct resolving resource documentation in keywords treeview ([2935bb8](https://github.com/d-biehl/robotcode/commit/2935bb8b139f88d48217d902fd69bd0233e17dcb))
12+
13+
14+
### Features
15+
16+
- **langserver:** Introduce new setting `robotcode.analysis.cache.ignoreArgumentsForLibrary` ([bb55ff4](https://github.com/d-biehl/robotcode/commit/bb55ff4e73c2221a2e811c2644538501982906cb))
17+
18+
This is usefull if you have library that get's variables from a python file that contains complex data like big dictionaries or complex objects that robotcode can't handle.
19+
20+
- **marketplace:** Create a Q&A discussion category on github ([605377d](https://github.com/d-biehl/robotcode/commit/605377dce9facf12c0d7db296e620a42d7a3e87b))
21+
22+
as a second way to ask questions and collect answers about robotcode I created a discussion group on the RobotCode github repository
23+
24+
- **vscode:** Use the official python extension api to get informations about python environments ([c032814](https://github.com/d-biehl/robotcode/commit/c032814bbf1a51a9a9ece79fef51cbcac4a0aa53))
25+
26+
closes [ENHANCEMENT] Integrate new Python Extension API #215
27+
28+
29+
30+
### Performance
31+
32+
- **analyzer:** Optimization of the analysis of imports, accelerated by a factor of 3 ([321b88d](https://github.com/d-biehl/robotcode/commit/321b88d33e083bfcef650a491afb518edc811ffe))
33+
- **langserver:** Try to use the last initialized namespace for completions to be a bit more responsive ([2c6fe37](https://github.com/d-biehl/robotcode/commit/2c6fe37c2e8be9d13aca9eca0d07ff4ee1b85456))
34+
35+
536
## [0.75.0](https://github.com/d-biehl/robotcode/compare/v0.74.0..v0.75.0) - 2024-02-13
637

738
### 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.75.0",
7+
"version": "0.76.0",
88
"author": {
99
"name": "Daniel Biehl",
1010
"url": "https://github.com/d-biehl/"
@@ -1475,4 +1475,4 @@
14751475
"webpack": "^5.90.3",
14761476
"webpack-cli": "^5.1.4"
14771477
}
1478-
}
1478+
}

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

0 commit comments

Comments
 (0)