Skip to content

Commit

Permalink
Release Robocorp Code 1.22.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed May 20, 2024
1 parent 112a17d commit 2b6c0e6
Show file tree
Hide file tree
Showing 5 changed files with 7 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.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.
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.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.
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.22.1",
"version": "1.22.2",
"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.22.1"
version = "1.22.2"
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.22.1"
__version__ = "1.22.2"
version_info: List[int] = [int(x) for x in __version__.split(".")]

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

0 comments on commit 2b6c0e6

Please sign in to comment.