Skip to content

Commit

Permalink
Release Robocorp Code 1.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Apr 25, 2024
1 parent 9562300 commit 744fb7e
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion robocorp-code/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Find the full installation instructions at [https://robocorp.com/docs/visual-stu

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

### Features (1.20.2)
### Features (1.21.0)

- Preliminary Support for [Robocorp Action Server](https://github.com/robocorp/robocorp/action_server) (Coding Actions for AIs).
- Packages view supporting Action Packages.
Expand Down
6 changes: 6 additions & 0 deletions robocorp-code/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

New in 1.21.0 (2024-04-25)
-----------------------------

- `sema4ai-actions` is now supported (`robocorp-actions` is still supported, although it's
now considered deprecated as `sema4ai-actions` is a drop-in replacement).

New in 1.20.2 (2024-04-23)
-----------------------------

Expand Down
6 changes: 3 additions & 3 deletions robocorp-code/docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ 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 1.20.2`).
- Update version (`python -m dev set-version 1.21.0`).

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

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

- Push contents to release branch, get the build in https://github.com/robocorp/robotframework-lsp/actions and install locally to test.
- `mu acp Release Robocorp Code 1.20.2`
- `mu acp Release Robocorp Code 1.21.0`

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

- Create a tag (`git tag robocorp-code-1.20.2`) and push it.
- Create a tag (`git tag robocorp-code-1.21.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": "1.20.2",
"version": "1.21.0",
"icon": "images/icon.png",
"publisher": "robocorp",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion robocorp-code/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "robocorp-code"
version = "1.20.2"
version = "1.21.0"
description = "Robocorp Code: Visual Studio Code Extension for Software Robot Development"
authors = [
"Fabio Zadrozny <fabio@robocorp.com>",
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
Expand Up @@ -2,7 +2,7 @@
import sys
from typing import List

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

__file__ = os.path.abspath(__file__)
Expand Down

0 comments on commit 744fb7e

Please sign in to comment.