File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ Find the full installation instructions at [https://robocorp.com/docs/product-ma
6969
7070During 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.
Original file line number Diff line number Diff line change 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).
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff line change 1- __version__ = "1.8.1 "
1+ __version__ = "1.9.0 "
22from typing import Union , List
33
44version_info : List [int ] = [int (x ) for x in __version__ .split ("." )]
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ def is_pure(self):
1616
1717setup (
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" ,
You can’t perform that action at this time.
0 commit comments