Skip to content

Commit 0264902

Browse files
committed
Release Robocorp Code 1.9.0
1 parent 2318325 commit 0264902

6 files changed

Lines changed: 18 additions & 8 deletions

File tree

robocorp-code/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Find the full installation instructions at [https://robocorp.com/docs/product-ma
6969

7070
During the first activation, the extension will download additional dependencies (such as Conda manager) that are required for it to run.
7171

72-
### Features (1.8.1)
72+
### Features (1.9.0)
7373

7474
- Preliminary support for [Robo](https://github.com/robocorp/robo) (Robocorp's Python Framework for automation).
7575
- Ctrl+Click on terminal for the 'Robocorp html Log` opens external browser.

robocorp-code/docs/changelog.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1-
New in 1.8.1 (2023-07-26)
1+
New in 1.9.0 (2023-08-04)
2+
-----------------------------
3+
4+
- If the robot has additional pythonpath entries, set those in the VSCode settings (`python.analysis.extraPaths`).
5+
- If there's some issue computing the Robot environment for a launch that's now shown in the UI.
6+
- `ROBO TASKS OUTPUT` updated to latest version (added status level filtering, tree navigation and search).
7+
- Fixed issue with `preRunScripts` (when target executable is a `.py`, it's searched in the `PATH`).
8+
- Converter now has DOT as a target language.
9+
10+
11+
New in 1.8.1 (2023-08-04)
212
-----------------------------
313

414
- Fixed issue with `preRunScripts` (launching python now always uses python in the robot target environment).

robocorp-code/docs/release.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ To release a new version:
77

88
- Create release branch (`git branch -D release-robocorp-code&git checkout -b release-robocorp-code`)
99

10-
- Update version (`python -m dev set-version 1.8.1`).
10+
- Update version (`python -m dev set-version 1.9.0`).
1111

1212
- Update README.md to add notes on features/fixes.
1313

1414
- Update changelog.md to add notes on features/fixes and set release date.
1515

1616
- Push contents to release branch, get the build in https://github.com/robocorp/robotframework-lsp/actions and install locally to test.
17-
- `mu acp Release Robocorp Code 1.8.1`
17+
- `mu acp Release Robocorp Code 1.9.0`
1818

1919
- Rebase with master (`git checkout master&git rebase release-robocorp-code`).
2020

21-
- Create a tag (`git tag robocorp-code-1.8.1`) and push it.
21+
- Create a tag (`git tag robocorp-code-1.9.0`) and push it.

robocorp-code/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"url": "https://github.com/robocorp/robotframework-lsp.git"
1010
},
1111
"license": "SEE LICENSE IN LICENSE.txt",
12-
"version": "1.8.1",
12+
"version": "1.9.0",
1313
"icon": "images/icon.png",
1414
"publisher": "robocorp",
1515
"engines": {

robocorp-code/src/robocorp_code/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.8.1"
1+
__version__ = "1.9.0"
22
from typing import Union, List
33

44
version_info: List[int] = [int(x) for x in __version__.split(".")]

robocorp-code/src/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def is_pure(self):
1616

1717
setup(
1818
name="robocorp_code",
19-
version="1.8.1",
19+
version="1.9.0",
2020
description="Robocorp Code: Visual Studio Code Extension for Software Robot Development",
2121
long_description=README,
2222
url="https://github.com/robocorp/robotframework-lsp",

0 commit comments

Comments
 (0)