Skip to content

Commit

Permalink
bump: version 0.61.5 → 0.61.6
Browse files Browse the repository at this point in the history
  • Loading branch information
d-biehl committed Oct 20, 2023
1 parent c65e98d commit f6a2667
Show file tree
Hide file tree
Showing 19 changed files with 42 additions and 32 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to "robotcode" are documented in this file.

## v0.61.6 (2023-10-20)

### Fix

- **langserver**: correct handling of imports with the same namespace name

### Refactor

- **langserver**: make package import relativ

## v0.61.5 (2023-10-19)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "RobotFramework support for Visual Studio Code",
"icon": "images/icon.png",
"publisher": "d-biehl",
"version": "0.61.5",
"version": "0.61.6",
"author": {
"name": "Daniel Biehl",
"url": "https://github.com/d-biehl/"
Expand Down
6 changes: 3 additions & 3 deletions packages/analyze/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ classifiers = [
]
dependencies = [
"robotframework>=4.1.0",
"robotcode-plugin==0.61.5",
"robotcode-robot==0.61.5",
"robotcode==0.61.5",
"robotcode-plugin==0.61.6",
"robotcode-robot==0.61.6",
"robotcode==0.61.6",
]
dynamic = ["version"]

Expand Down
2 changes: 1 addition & 1 deletion packages/analyze/src/robotcode/analyze/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.61.5"
__version__ = "0.61.6"
2 changes: 1 addition & 1 deletion packages/core/src/robotcode/core/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.61.5"
__version__ = "0.61.6"
4 changes: 2 additions & 2 deletions packages/debugger/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ classifiers = [
dynamic = ["version"]
dependencies = [
"robotframework>=4.1.0",
"robotcode-jsonrpc2==0.61.5",
"robotcode-runner==0.61.5",
"robotcode-jsonrpc2==0.61.6",
"robotcode-runner==0.61.6",
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion packages/debugger/src/robotcode/debugger/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.61.5"
__version__ = "0.61.6"
2 changes: 1 addition & 1 deletion packages/jsonrpc2/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers = [
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Tool",
]
dependencies = ["robotcode-core==0.61.5"]
dependencies = ["robotcode-core==0.61.6"]
dynamic = ["version"]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion packages/jsonrpc2/src/robotcode/jsonrpc2/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.61.5"
__version__ = "0.61.6"
4 changes: 2 additions & 2 deletions packages/language_server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ classifiers = [
]
dependencies = [
"robotframework>=4.1.0",
"robotcode-jsonrpc2==0.61.5",
"robotcode==0.61.5",
"robotcode-jsonrpc2==0.61.6",
"robotcode==0.61.6",
]
dynamic = ["version"]

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.61.5"
__version__ = "0.61.6"
2 changes: 1 addition & 1 deletion packages/modifiers/src/robotcode/modifiers/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.61.5"
__version__ = "0.61.6"
2 changes: 1 addition & 1 deletion packages/plugin/src/robotcode/plugin/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.61.5"
__version__ = "0.61.6"
2 changes: 1 addition & 1 deletion packages/robot/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies = [
"robotframework>=4.1.0",
"tomli>=1.1.0; python_version < '3.11'",
"platformdirs<3.12.0,>=3.2.0",
"robotcode-core==0.61.5",
"robotcode-core==0.61.6",
]
dynamic = ["version"]

Expand Down
2 changes: 1 addition & 1 deletion packages/robot/src/robotcode/robot/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.61.5"
__version__ = "0.61.6"
6 changes: 3 additions & 3 deletions packages/runner/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ classifiers = [
dynamic = ["version"]
dependencies = [
"robotframework>=4.1.0",
"robotcode-robot==0.61.5",
"robotcode-modifiers==0.61.5",
"robotcode==0.61.5",
"robotcode-robot==0.61.6",
"robotcode-modifiers==0.61.6",
"robotcode==0.61.6",
]

[project.entry-points.robotcode]
Expand Down
2 changes: 1 addition & 1 deletion packages/runner/src/robotcode/runner/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.61.5"
__version__ = "0.61.6"
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ classifiers = [
"Framework :: Robot Framework :: Tool",
]
requires-python = ">=3.8"
dependencies = ["robotcode-plugin==0.61.5"]
dependencies = ["robotcode-plugin==0.61.6"]
dynamic = ["version"]


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


[project.optional-dependencies]
debugger = ["robotcode-debugger==0.61.5"]
languageserver = ["robotcode-language-server==0.61.5"]
runner = ["robotcode-runner==0.61.5"]
analyze = ["robotcode-analyze==0.61.5"]
debugger = ["robotcode-debugger==0.61.6"]
languageserver = ["robotcode-language-server==0.61.6"]
runner = ["robotcode-runner==0.61.6"]
analyze = ["robotcode-analyze==0.61.6"]
yaml = ["PyYAML>=5.4"]
lint = ["robotframework-robocop>=2.0.0"]
tidy = ["robotframework-tidy>=2.0.0"]
rest = ["docutils"]
colored = ["rich"]
all = [
"robotcode-debugger==0.61.5",
"robotcode-language-server==0.61.5",
"robotcode-runner==0.61.5",
"robotcode-analyze==0.61.5",
"robotcode-debugger==0.61.6",
"robotcode-language-server==0.61.6",
"robotcode-runner==0.61.6",
"robotcode-analyze==0.61.6",
"PyYAML>=5.4",
"robotframework-robocop>=2.0.0",
"robotframework-tidy>=2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/robotcode/cli/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.61.5"
__version__ = "0.61.6"

0 comments on commit f6a2667

Please sign in to comment.