Skip to content

Commit

Permalink
Release Robocorp Code 1.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Feb 2, 2024
1 parent ca59f92 commit fbdc282
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/product-ma

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

### Features (1.15.1)
### Features (1.16.0)

- Preliminary support for [Robo](https://github.com/robocorp/robo) (Robocorp's Python Framework for automation).
- Ctrl+Click on terminal for the 'Robocorp html Log` opens external browser.
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 1.16.0 (2024-02-02)
-----------------------------

- Added linting for methods marked as `@action`.


New in 1.15.1 (2024-01-25)
-----------------------------

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.15.1`).
- Update version (`python -m dev set-version 1.16.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.15.1`
- `mu acp Release Robocorp Code 1.16.0`

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

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

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

0 comments on commit fbdc282

Please sign in to comment.