Skip to content

Commit

Permalink
Release Sema4.ai VSCode extension 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Oct 22, 2024
1 parent c17d933 commit fb84146
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Unreleased

## New in 2.7.0 (2024-10-22)

- Fix the error message when importing or creating a new agent.
- Update Action Server dep to 1.1.1
- Use `SEMA4AI_VSCODE_X_ACTION_CONTEXT` instead of `SEMA4AI-VSCODE-X-ACTION-CONTEXT` when launching actions (using `-` is not a valid env variable name in some situations)
Expand Down
10 changes: 5 additions & 5 deletions docs/release.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
To release a stable new version:

- Open a shell at the proper place (something as X:\robocorpws\vscode-extension\sema4ai)
- Checkout the `master` branch and create a new branch from it (`release/2.6.6`)
- Update version using `python -m dev set-version 2.6.6`
- Open a shell at the proper place (something as X:\sema4ai\vscode-extension\sema4ai)
- Checkout the `master` branch and create a new branch from it (`release/2.7.0`)
- Update version using `python -m dev set-version 2.7.0`
- Update README.md to add notes on features/fixes
- Update changelog.md to add notes on features/fixes and set release date
- Commit your changes using the following message: `Release Sema4.ai VSCode extension 2.6.6`
- Commit your changes using the following message: `Release Sema4.ai VSCode extension 2.7.0`
- Create PR
- After PR is merged to master, update local repo and create a tag using `git tag sema4ai-2.6.6`
- After PR is merged to master, update local repo and create a tag using `git tag sema4ai-2.7.0`

To release a new pre-release version:

Expand Down
2 changes: 1 addition & 1 deletion sema4ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"url": "https://github.com/Sema4AI/vscode-extension/.git"
},
"license": "SEE LICENSE IN LICENSE.txt",
"version": "2.6.6",
"version": "2.7.0",
"icon": "images/icon.png",
"publisher": "sema4ai",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion sema4ai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sema4ai"
version = "2.6.6"
version = "2.7.0"
description = "Sema4.ai: Visual Studio Code Extension for AI Actions and Robot Tasks development"
authors = ["Fabio Zadrozny <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion sema4ai/src/sema4ai_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__ = "2.6.6"
__version__ = "2.7.0"
version_info: list[int] = [int(x) for x in __version__.split(".")]

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

0 comments on commit fb84146

Please sign in to comment.