Skip to content

Commit 507d773

Browse files
committed
chore(release): bump version 0.104.0 → 0.105.0
1 parent f4f576f commit 507d773

File tree

25 files changed

+72
-49
lines changed

25 files changed

+72
-49
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
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.105.0](https://github.com/robotcodedev/robotcode/compare/v0.104.0..v0.105.0) - 2025-01-06
6+
7+
### Documentation
8+
9+
- Update readme's ([f4f576f](https://github.com/robotcodedev/robotcode/commit/f4f576f3222ac3cf08904a336615edf45c57f922))
10+
11+
12+
### Features
13+
14+
- **intellij:** Added initial Robot Framework file templates and better syntax highlighting support based on a customized TextMate lexer/parser ([ef67d2c](https://github.com/robotcodedev/robotcode/commit/ef67d2c661c6ae8c8c734561b54f63d82f9b4e3c))
15+
- **intellij:** Implemented brace matcher for variables ([9ee1f22](https://github.com/robotcodedev/robotcode/commit/9ee1f22c2f077a1c92ac9f5f6dc37542fb24e79c))
16+
- **intellij:** Finalize syntax coloring and sematic highlightning ([faa905d](https://github.com/robotcodedev/robotcode/commit/faa905d048d4af076695b619d91ee97371cfd0fd))
17+
- **intellij:** Finalize syntax coloring and sematic highlightning part 2 ([97081a5](https://github.com/robotcodedev/robotcode/commit/97081a5f13a7f58d6825853330c8806506ad6fde))
18+
- **intellij:** Implemented support for highlightning embedded arguments, escape sequences, python expressions and so on ([c5d6cf3](https://github.com/robotcodedev/robotcode/commit/c5d6cf3722c22929799b154204711c697928da7e))
19+
- **langserver:** Correct highlightning to better highlight python expresseions, escape sequences, environment variable default value and embedded argument regexes ([5dba571](https://github.com/robotcodedev/robotcode/commit/5dba5713f746cb9fb1b36433be982493bb3905d2))
20+
- **language_server:** Enhanced hover representation of variables ([039682d](https://github.com/robotcodedev/robotcode/commit/039682dbdd19a6e1dc972f642dbfd5f1787b4dcd))
21+
22+
23+
### Testing
24+
25+
- Update regression tests ([c5f4573](https://github.com/robotcodedev/robotcode/commit/c5f4573c1b9ea9a2db720c5044bf7a2cdc8e2bda))
26+
27+
528
## [0.104.0](https://github.com/robotcodedev/robotcode/compare/v0.103.0..v0.104.0) - 2024-12-30
629

730
### Bug Fixes

intellij-client/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginGroup = dev.robotcode
44
pluginName = RobotCode - Robot Framework Support
55
pluginRepositoryUrl = https://github.com/robotcodedev/robotcode4ij
66
# SemVer format -> https://semver.org
7-
pluginVersion = 0.104.0
7+
pluginVersion = 0.105.0
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 243

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
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.104.0",
7+
"version": "0.105.0",
88
"author": {
99
"name": "Daniel Biehl",
1010
"url": "https://github.com/robotcodedev/"

packages/analyze/pyproject.toml

+3-3
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.104.0",
31-
"robotcode-robot==0.104.0",
32-
"robotcode==0.104.0",
30+
"robotcode-plugin==0.105.0",
31+
"robotcode-robot==0.105.0",
32+
"robotcode==0.105.0",
3333
]
3434
dynamic = ["version"]
3535

Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.104.0"
1+
__version__ = "0.105.0"
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.104.0"
1+
__version__ = "0.105.0"

packages/debugger/pyproject.toml

+2-2
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.104.0",
32-
"robotcode-runner==0.104.0",
31+
"robotcode-jsonrpc2==0.105.0",
32+
"robotcode-runner==0.105.0",
3333
]
3434

3535
[project.optional-dependencies]
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.104.0"
1+
__version__ = "0.105.0"

packages/jsonrpc2/pyproject.toml

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

3131
[project.urls]
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.104.0"
1+
__version__ = "0.105.0"

packages/language_server/pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ classifiers = [
2727
]
2828
dependencies = [
2929
"robotframework>=4.1.0",
30-
"robotcode-jsonrpc2==0.104.0",
31-
"robotcode-robot==0.104.0",
32-
"robotcode-analyze==0.104.0",
33-
"robotcode==0.104.0",
30+
"robotcode-jsonrpc2==0.105.0",
31+
"robotcode-robot==0.105.0",
32+
"robotcode-analyze==0.105.0",
33+
"robotcode==0.105.0",
3434
]
3535
dynamic = ["version"]
3636

Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.104.0"
1+
__version__ = "0.105.0"
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.104.0"
1+
__version__ = "0.105.0"
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.104.0"
1+
__version__ = "0.105.0"

packages/repl/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ classifiers = [
2727
]
2828
dynamic = ["version"]
2929
dependencies = [
30-
"robotcode-runner==0.104.0"
30+
"robotcode-runner==0.105.0"
3131
]
3232

3333
[project.entry-points.robotcode]
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.104.0"
1+
__version__ = "0.105.0"

packages/repl_server/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ classifiers = [
2727
]
2828
dynamic = ["version"]
2929
dependencies = [
30-
"robotcode-jsonrpc2==0.104.0",
31-
"robotcode-runner==0.104.0"
30+
"robotcode-jsonrpc2==0.105.0",
31+
"robotcode-runner==0.105.0"
3232
]
3333

3434
[project.entry-points.robotcode]
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.104.0"
1+
__version__ = "0.105.0"

packages/robot/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies = [
3030
"robotframework>=4.1.0",
3131
"tomli>=1.1.0; python_version < '3.11'",
3232
"platformdirs>=3.2.0,<4.4.0",
33-
"robotcode-core==0.104.0",
33+
"robotcode-core==0.105.0",
3434
]
3535
dynamic = ["version"]
3636

Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.104.0"
1+
__version__ = "0.105.0"

packages/runner/pyproject.toml

+4-4
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.104.0",
32-
"robotcode-modifiers==0.104.0",
33-
"robotcode-plugin==0.104.0",
34-
"robotcode==0.104.0",
31+
"robotcode-robot==0.105.0",
32+
"robotcode-modifiers==0.105.0",
33+
"robotcode-plugin==0.105.0",
34+
"robotcode==0.105.0",
3535
]
3636

3737
[project.entry-points.robotcode]
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.104.0"
1+
__version__ = "0.105.0"

pyproject.toml

+15-15
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ classifiers = [
5151
]
5252
requires-python = ">=3.8"
5353
dependencies = [
54-
"robotcode-core==0.104.0",
55-
"robotcode-plugin==0.104.0",
56-
"robotcode-robot==0.104.0",
54+
"robotcode-core==0.105.0",
55+
"robotcode-plugin==0.105.0",
56+
"robotcode-robot==0.105.0",
5757
]
5858
dynamic = ["version"]
5959

@@ -71,24 +71,24 @@ robotcode = "robotcode.cli.__main__:main"
7171

7272

7373
[project.optional-dependencies]
74-
debugger = ["robotcode-debugger==0.104.0"]
75-
languageserver = ["robotcode-language-server==0.104.0"]
76-
runner = ["robotcode-runner==0.104.0"]
77-
analyze = ["robotcode-analyze==0.104.0"]
74+
debugger = ["robotcode-debugger==0.105.0"]
75+
languageserver = ["robotcode-language-server==0.105.0"]
76+
runner = ["robotcode-runner==0.105.0"]
77+
analyze = ["robotcode-analyze==0.105.0"]
7878
yaml = ["PyYAML>=5.4"]
7979
lint = ["robotframework-robocop>=2.0.0"]
8080
tidy = ["robotframework-tidy>=2.0.0"]
8181
rest = ["docutils"]
82-
repl = ["robotcode-repl==0.104.0"]
83-
replserver = ["robotcode-repl-server==0.104.0"]
82+
repl = ["robotcode-repl==0.105.0"]
83+
replserver = ["robotcode-repl-server==0.105.0"]
8484
colored = ["rich"]
8585
all = [
86-
"robotcode-debugger==0.104.0",
87-
"robotcode-language-server==0.104.0",
88-
"robotcode-runner==0.104.0",
89-
"robotcode-analyze==0.104.0",
90-
"robotcode-repl==0.104.0",
91-
"robotcode-repl-server==0.104.0",
86+
"robotcode-debugger==0.105.0",
87+
"robotcode-language-server==0.105.0",
88+
"robotcode-runner==0.105.0",
89+
"robotcode-analyze==0.105.0",
90+
"robotcode-repl==0.105.0",
91+
"robotcode-repl-server==0.105.0",
9292
"PyYAML>=5.4",
9393
"robotframework-robocop>=2.0.0",
9494
"robotframework-tidy>=2.0.0",

src/robotcode/cli/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.104.0"
1+
__version__ = "0.105.0"

0 commit comments

Comments
 (0)