Skip to content

Commit

Permalink
chore(release): bump version 0.99.0 → 0.100.0
Browse files Browse the repository at this point in the history
  • Loading branch information
d-biehl committed Dec 5, 2024
1 parent 639314b commit fcf3cf3
Show file tree
Hide file tree
Showing 24 changed files with 75 additions and 53 deletions.
30 changes: 26 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.

## [0.100.0](https://github.com/robotcodedev/robotcode/compare/v0.99.0..v0.100.0) - 2024-12-05

### Bug Fixes

- **analyze:** Corrected statistics about analyzed files ([18b6cb8](https://github.com/robotcodedev/robotcode/commit/18b6cb878e893b32ce26b16c3de0c6e628367fde))
- **analyzer:** Correct handling of variables in embedded args in keyword calls ([2c8ed56](https://github.com/robotcodedev/robotcode/commit/2c8ed5662be1e8621d7d9c742275ccaf1809d06c))
- **config:** Corrected handling of relative items in python path and other variables if current folder is different then root folder of the project ([66a94bc](https://github.com/robotcodedev/robotcode/commit/66a94bc993a27d8fe5cec13813e524b1099509c6))
- **vscode:** Corrected highlightning of bold/italic in documentation tags ([170287d](https://github.com/robotcodedev/robotcode/commit/170287db04ec811e39b7ec5e7bd853ae9d98ec7c))


### Documentation

- Update some docs ([639314b](https://github.com/robotcodedev/robotcode/commit/639314b9e526e7e3d5820631db0c7c777ac9d648))


### Features

- **analyzer:** Add error codes `VariableNotReplaced` and `EnvironmentVariableNotReplaced` for variables not found/replaced in documentation, tags, and metadata ([c5f766f](https://github.com/robotcodedev/robotcode/commit/c5f766f036e49153f318e91ddefb68c975668669))
- **vscode:** Added some better file icons ([39fad12](https://github.com/robotcodedev/robotcode/commit/39fad12e6cc8d1246dc45c8e843fa1c3b046a491))
- **vscode:** Preview of Robot Framework Notebook support for VSCode ([9185ccd](https://github.com/robotcodedev/robotcode/commit/9185ccd84dbb9f2f5cd2aba4212598abd93ef0f1))


## [0.99.0](https://github.com/robotcodedev/robotcode/compare/v0.98.0..v0.99.0) - 2024-11-20

### Bug Fixes
Expand All @@ -14,10 +36,10 @@ All notable changes to this project will be documented in this file. See [conven
- **analyze:** `analyze code` now return a flag that indicates if errors/warnings/etc. occurs ([5125f7d](https://github.com/robotcodedev/robotcode/commit/5125f7dca21daf18f21708ab0676d8707fbb2827))

- `0`: **SUCCESS** - No issues detected.
- `1`: **ERRORS** - Critical issues found.
- `2`: **WARNINGS** - Non-critical issues detected.
- `4`: **INFORMATIONS** - General information messages.
- `8`: **HINTS** - Suggestions or improvements.
- `1`: **ERRORS** - Critical issues found.
- `2`: **WARNINGS** - Non-critical issues detected.
- `4`: **INFORMATIONS** - General information messages.
- `8`: **HINTS** - Suggestions or improvements.

A return code 1 means error and 3 means there are errors and warning and so on.

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Robot Framework IntelliSense, linting, test execution and debugging, code formatting, refactoring, and many more",
"icon": "images/icon.png",
"publisher": "d-biehl",
"version": "0.99.0",
"version": "0.100.0",
"author": {
"name": "Daniel Biehl",
"url": "https://github.com/robotcodedev/"
Expand Down Expand Up @@ -1926,4 +1926,4 @@
"workspaces": [
"docs"
]
}
}
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.99.0",
"robotcode-robot==0.99.0",
"robotcode==0.99.0",
"robotcode-plugin==0.100.0",
"robotcode-robot==0.100.0",
"robotcode==0.100.0",
]
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.99.0"
__version__ = "0.100.0"
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.99.0"
__version__ = "0.100.0"
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.99.0",
"robotcode-runner==0.99.0",
"robotcode-jsonrpc2==0.100.0",
"robotcode-runner==0.100.0",
]

[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.99.0"
__version__ = "0.100.0"
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.99.0"]
dependencies = ["robotcode-core==0.100.0"]
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.99.0"
__version__ = "0.100.0"
8 changes: 4 additions & 4 deletions packages/language_server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ classifiers = [
]
dependencies = [
"robotframework>=4.1.0",
"robotcode-jsonrpc2==0.99.0",
"robotcode-robot==0.99.0",
"robotcode-analyze==0.99.0",
"robotcode==0.99.0",
"robotcode-jsonrpc2==0.100.0",
"robotcode-robot==0.100.0",
"robotcode-analyze==0.100.0",
"robotcode==0.100.0",
]
dynamic = ["version"]

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.99.0"
__version__ = "0.100.0"
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.99.0"
__version__ = "0.100.0"
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.99.0"
__version__ = "0.100.0"
2 changes: 1 addition & 1 deletion packages/repl/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"robotcode-runner==0.99.0"
"robotcode-runner==0.100.0"
]

[project.entry-points.robotcode]
Expand Down
2 changes: 1 addition & 1 deletion packages/repl/src/robotcode/repl/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.99.0"
__version__ = "0.100.0"
4 changes: 2 additions & 2 deletions packages/repl_server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"robotcode-jsonrpc2==0.99.0",
"robotcode-runner==0.99.0"
"robotcode-jsonrpc2==0.100.0",
"robotcode-runner==0.100.0"
]

[project.entry-points.robotcode]
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.99.0"
__version__ = "0.100.0"
2 changes: 1 addition & 1 deletion packages/robot/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies = [
"robotframework>=4.1.0",
"tomli>=1.1.0; python_version < '3.11'",
"platformdirs>=3.2.0,<4.4.0",
"robotcode-core==0.99.0",
"robotcode-core==0.100.0",
]
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.99.0"
__version__ = "0.100.0"
8 changes: 4 additions & 4 deletions packages/runner/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ classifiers = [
dynamic = ["version"]
dependencies = [
"robotframework>=4.1.0",
"robotcode-robot==0.99.0",
"robotcode-modifiers==0.99.0",
"robotcode-plugin==0.99.0",
"robotcode==0.99.0",
"robotcode-robot==0.100.0",
"robotcode-modifiers==0.100.0",
"robotcode-plugin==0.100.0",
"robotcode==0.100.0",
]

[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.99.0"
__version__ = "0.100.0"
30 changes: 15 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ classifiers = [
]
requires-python = ">=3.8"
dependencies = [
"robotcode-core==0.99.0",
"robotcode-plugin==0.99.0",
"robotcode-robot==0.99.0",
"robotcode-core==0.100.0",
"robotcode-plugin==0.100.0",
"robotcode-robot==0.100.0",
]
dynamic = ["version"]

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


[project.optional-dependencies]
debugger = ["robotcode-debugger==0.99.0"]
languageserver = ["robotcode-language-server==0.99.0"]
runner = ["robotcode-runner==0.99.0"]
analyze = ["robotcode-analyze==0.99.0"]
debugger = ["robotcode-debugger==0.100.0"]
languageserver = ["robotcode-language-server==0.100.0"]
runner = ["robotcode-runner==0.100.0"]
analyze = ["robotcode-analyze==0.100.0"]
yaml = ["PyYAML>=5.4"]
lint = ["robotframework-robocop>=2.0.0"]
tidy = ["robotframework-tidy>=2.0.0"]
rest = ["docutils"]
repl = ["robotcode-repl==0.99.0"]
replserver = ["robotcode-repl-server==0.99.0"]
repl = ["robotcode-repl==0.100.0"]
replserver = ["robotcode-repl-server==0.100.0"]
colored = ["rich"]
all = [
"robotcode-debugger==0.99.0",
"robotcode-language-server==0.99.0",
"robotcode-runner==0.99.0",
"robotcode-analyze==0.99.0",
"robotcode-repl==0.99.0",
"robotcode-repl-server==0.99.0",
"robotcode-debugger==0.100.0",
"robotcode-language-server==0.100.0",
"robotcode-runner==0.100.0",
"robotcode-analyze==0.100.0",
"robotcode-repl==0.100.0",
"robotcode-repl-server==0.100.0",
"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.99.0"
__version__ = "0.100.0"

0 comments on commit fcf3cf3

Please sign in to comment.