diff --git a/robocorp-code/README.md b/robocorp-code/README.md index d05fc20fe4..1dfc3775aa 100644 --- a/robocorp-code/README.md +++ b/robocorp-code/README.md @@ -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.22.1) +### Features (1.22.2) - Preliminary Support for [Robocorp Action Server](https://github.com/robocorp/robocorp/action_server) (Coding Actions for AIs). - Packages view supporting Action Packages. diff --git a/robocorp-code/docs/release.md b/robocorp-code/docs/release.md index 9821abe9c8..a6d6805294 100644 --- a/robocorp-code/docs/release.md +++ b/robocorp-code/docs/release.md @@ -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.22.1`). +- Update version (`python -m dev set-version 1.22.2`). - 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.22.1` + - `mu acp Release Robocorp Code 1.22.2` - Rebase with master (`git checkout master & git rebase release-robocorp-code`). -- Create a tag (`git tag robocorp-code-1.22.1`) and push it. +- Create a tag (`git tag robocorp-code-1.22.2`) and push it. diff --git a/robocorp-code/package.json b/robocorp-code/package.json index 2f120467ef..e46edc294c 100644 --- a/robocorp-code/package.json +++ b/robocorp-code/package.json @@ -9,7 +9,7 @@ "url": "https://github.com/robocorp/robotframework-lsp.git" }, "license": "SEE LICENSE IN LICENSE.txt", - "version": "1.22.1", + "version": "1.22.2", "icon": "images/icon.png", "publisher": "robocorp", "engines": { diff --git a/robocorp-code/pyproject.toml b/robocorp-code/pyproject.toml index ed6efe6755..63f287330e 100644 --- a/robocorp-code/pyproject.toml +++ b/robocorp-code/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "robocorp-code" -version = "1.22.1" +version = "1.22.2" description = "Robocorp Code: Visual Studio Code Extension for Software Robot Development" authors = [ "Fabio Zadrozny ", diff --git a/robocorp-code/src/robocorp_code/__init__.py b/robocorp-code/src/robocorp_code/__init__.py index 77a1f4ea55..e187d7c7d7 100644 --- a/robocorp-code/src/robocorp_code/__init__.py +++ b/robocorp-code/src/robocorp_code/__init__.py @@ -2,7 +2,7 @@ import sys from typing import List -__version__ = "1.22.1" +__version__ = "1.22.2" version_info: List[int] = [int(x) for x in __version__.split(".")] __file__ = os.path.abspath(__file__)