Skip to content

Commit

Permalink
Release Robocorp Code 1.22.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed May 22, 2024
1 parent 9ef57e3 commit a711d9f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion robocorp-code/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@

Unreleased
New in 1.22.3 (2024-05-22)
-----------------------------

- Improvements when running actions:
- Logs will show local variables (ROBOT_ROOT is no longer set).
- ROBOT_ARTIFACTS set to a better place for the log.html.
- If using `sema4ai-actions 0.7.0` or newer, the results of running an action are printed to the terminal.


New in 1.22.2 (2024-05-20)
-----------------------------

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.2`).
- Update version (`python -m dev set-version 1.22.3`).

- 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.2`
- `mu acp Release Robocorp Code 1.22.3`

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

- Create a tag (`git tag robocorp-code-1.22.2`) and push it.
- Create a tag (`git tag robocorp-code-1.22.3`) 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.2",
"version": "1.22.3",
"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.2"
version = "1.22.3"
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.2"
__version__ = "1.22.3"
version_info: List[int] = [int(x) for x in __version__.split(".")]

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

0 comments on commit a711d9f

Please sign in to comment.