Skip to content

Commit

Permalink
chore(release): bump version 0.92.0 → 0.93.0
Browse files Browse the repository at this point in the history
  • Loading branch information
d-biehl committed Oct 8, 2024
1 parent f4025fb commit 829589c
Show file tree
Hide file tree
Showing 22 changed files with 90 additions and 44 deletions.
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,52 @@

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

## [0.93.0](https://github.com/robotcodedev/robotcode/compare/v0.92.0..v0.93.0) - 2024-10-08

### Bug Fixes

- Logging of measure_time if log is disabled ([725c739](https://github.com/robotcodedev/robotcode/commit/725c739c0ed01b1249a611605c96e035467f03fa))
- Enable supportsANSIStyling in DAP to reeanble colored output in debug console ([0d5616c](https://github.com/robotcodedev/robotcode/commit/0d5616c33215ed993052d4f50e7ad41a13b21058))
- Corrected highlightning invalid sections for RF7 ([d139ff1](https://github.com/robotcodedev/robotcode/commit/d139ff1f9c309060cc12d1d7499cab1ada4a0b01))


### Features

- **cli:** New command line interface tool - Robot Framework REPL interpreter ([be386d2](https://github.com/robotcodedev/robotcode/commit/be386d244be0b9b85ca4fbe49597985652f066db))

The new CLI command `repl` introduces an interactive Robot Framework interpreter. You can install it by running `pip install robotcode[repl]` and start it via the command line using `robotcode repl`.

With this interactive interpreter, you can execute Robot Framework keywords without the need to run a full test suite. By default, all BuiltIn keywords are immediately accessible. To load a library, you can use the `import library` keyword, and for resources or variable files, you can use the corresponding built-in commands `import resource` and `import variables`. The outcome of any keyword execution, along with relevant log details, is displayed directly in the console.

You can exit the interpreter using the `exit` keyword or by pressing `CTRL`+`D` on Unix-like systems and `CTRL+Z` followed by `ENTER` on Windows.

At this stage, the implementation is fairly basic, but additional features for the REPL command are planned. This also serves as the first step toward an exciting new feature (spoiler alert!): Robot Framework Notebooks.

- **debugger:** Increase timeouts for debugger to fit better to python debugger timeouts and introduce environment variables to override these timeouts ([63f3e4a](https://github.com/robotcodedev/robotcode/commit/63f3e4ac4d061eed95c95d615c501b2d4430e378))
- **langserver:** Resolve variable in hover for documentation settings in testcases and keywords ([ffa9bdb](https://github.com/robotcodedev/robotcode/commit/ffa9bdb2cdca47b20f56b14deaece59fc49b9a13))
- **vscode:** Introduce RobotCode: Start Terminal REPL command for launching the interactive Robot Framework interpreter directly from VSCode ([f4025fb](https://github.com/robotcodedev/robotcode/commit/f4025fb77c54ea49531c1ec67f1072c0a43c87f9))
- Improved logging with time information ([27d21b5](https://github.com/robotcodedev/robotcode/commit/27d21b599d7d5005e2920a11b47583e32f9a049c))


- Operations that take a little longer now have an indication of how long they took
- 2 new command line switches `--log-format` and `--log-style`, see also the Python logging documentation
- `--root` command line argument to specify a project root and disable autodetection of project root ([add4102](https://github.com/robotcodedev/robotcode/commit/add4102594ee73c3a93760eb4a5846358ddf2b1a))
- Add `--no-vcs` command-line option to ignore VCS directories (e.g., .git) when detecting the project root ([d7e28f2](https://github.com/robotcodedev/robotcode/commit/d7e28f2c7c7ffd42ce3d989d1ae8f4e8207d7b81))


#closes 201


### Performance

- **langserver:** Speedup semantic highlightning a lot ([567ac72](https://github.com/robotcodedev/robotcode/commit/567ac72b393d6e42baadd575195744c5503da297))


### Refactor

- Some performance tweaks ([d3b39be](https://github.com/robotcodedev/robotcode/commit/d3b39be576dd80d757554708fff2cd0bc40354ff))


## [0.92.0](https://github.com/robotcodedev/robotcode/compare/v0.91.0..v0.92.0) - 2024-10-01

### Features
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.

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": "Robot Framework IntelliSense, linting, test execution and debugging, code formatting, refactoring, and many more",
"icon": "images/icon.png",
"publisher": "d-biehl",
"version": "0.92.0",
"version": "0.93.0",
"author": {
"name": "Daniel Biehl",
"url": "https://github.com/robotcodedev/"
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.92.0",
"robotcode-robot==0.92.0",
"robotcode==0.92.0",
"robotcode-plugin==0.93.0",
"robotcode-robot==0.93.0",
"robotcode==0.93.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.92.0"
__version__ = "0.93.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.92.0"
__version__ = "0.93.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.92.0",
"robotcode-runner==0.92.0",
"robotcode-jsonrpc2==0.93.0",
"robotcode-runner==0.93.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.92.0"
__version__ = "0.93.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.92.0"]
dependencies = ["robotcode-core==0.93.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.92.0"
__version__ = "0.93.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.92.0",
"robotcode-robot==0.92.0",
"robotcode-analyze==0.92.0",
"robotcode==0.92.0",
"robotcode-jsonrpc2==0.93.0",
"robotcode-robot==0.93.0",
"robotcode-analyze==0.93.0",
"robotcode==0.93.0",
]
dynamic = ["version"]

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.92.0"
__version__ = "0.93.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.92.0"
__version__ = "0.93.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.92.0"
__version__ = "0.93.0"
4 changes: 2 additions & 2 deletions packages/repl/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.92.0",
"robotcode-runner==0.92.0"
"robotcode-jsonrpc2==0.93.0",
"robotcode-runner==0.93.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.92.0"
__version__ = "0.93.0"
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.2.0,<4.2.0",
"robotcode-core==0.92.0",
"robotcode-core==0.93.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.92.0"
__version__ = "0.93.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.92.0",
"robotcode-modifiers==0.92.0",
"robotcode-plugin==0.92.0",
"robotcode==0.92.0",
"robotcode-robot==0.93.0",
"robotcode-modifiers==0.93.0",
"robotcode-plugin==0.93.0",
"robotcode==0.93.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.92.0"
__version__ = "0.93.0"
26 changes: 13 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ classifiers = [
]
requires-python = ">=3.8"
dependencies = [
"robotcode-core==0.92.0",
"robotcode-plugin==0.92.0",
"robotcode-robot==0.92.0",
"robotcode-core==0.93.0",
"robotcode-plugin==0.93.0",
"robotcode-robot==0.93.0",
]
dynamic = ["version"]

Expand All @@ -70,22 +70,22 @@ robotcode = "robotcode.cli.__main__:main"


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

0 comments on commit 829589c

Please sign in to comment.