Skip to content

Commit

Permalink
Release Robocorp Code 0.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Apr 5, 2022
1 parent ce1c430 commit 35f4b7b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion robocorp-code/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Find the full installation instructions at [https://robocorp.com/docs/product-ma

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

### Features (0.29.0)
### Features (0.30.0)

- Support for [Work Items](https://robocorp.com/docs/developer-tools/visual-studio-code/extension-features#using-work-items).
- Automatic bootstrapping of the Python environment for the `Robot Framework Language Server`.
Expand Down
6 changes: 6 additions & 0 deletions robocorp-code/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
New in 0.30.0 (2022-04-05)
-----------------------------

- If only a .vscode folder is created, force creation of robot.


New in 0.29.0 (2022-04-04)
-----------------------------

Expand Down
4 changes: 2 additions & 2 deletions robocorp-code/docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ To release a new version:

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

- Update version (`python -m dev set-version 0.29.0`).
- Update version (`python -m dev set-version 0.30.0`).

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

Expand All @@ -17,4 +17,4 @@ To release a new version:

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

- Create a tag (`git tag robocorp-code-0.29.0`) and push it.
- Create a tag (`git tag robocorp-code-0.30.0`) and push it.
2 changes: 1 addition & 1 deletion robocorp-code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"url": "https://github.com/robocorp/robotframework-lsp.git"
},
"license": "SEE LICENSE IN LICENSE.txt",
"version": "0.29.0",
"version": "0.30.0",
"icon": "images/icon.png",
"publisher": "robocorp",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion robocorp-code/src/robocorp_code/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.29.0"
__version__ = "0.30.0"
from typing import Union, List

version_info: List[int] = [int(x) for x in __version__.split(".")]
Expand Down
2 changes: 1 addition & 1 deletion robocorp-code/src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def is_pure(self):

setup(
name="robocorp_code",
version="0.29.0",
version="0.30.0",
description="Robocorp Code: Visual Studio Code Extension for Software Robot Development",
long_description=README,
url="https://github.com/robocorp/robotframework-lsp",
Expand Down

0 comments on commit 35f4b7b

Please sign in to comment.