From fb84146cfd2916c816c9770af9d701412dd8fc3c Mon Sep 17 00:00:00 2001 From: Fabio Zadrozny Date: Tue, 22 Oct 2024 09:18:02 -0300 Subject: [PATCH] Release Sema4.ai VSCode extension 2.7.0 --- docs/changelog.md | 2 ++ docs/release.md | 10 +++++----- sema4ai/package.json | 2 +- sema4ai/pyproject.toml | 2 +- sema4ai/src/sema4ai_code/__init__.py | 2 +- 5 files changed, 10 insertions(+), 8 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 8ed90c14..ee592bd7 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -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) diff --git a/docs/release.md b/docs/release.md index 3972bfb3..6de3c16d 100644 --- a/docs/release.md +++ b/docs/release.md @@ -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: diff --git a/sema4ai/package.json b/sema4ai/package.json index b5b181d7..e1a504cf 100644 --- a/sema4ai/package.json +++ b/sema4ai/package.json @@ -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": { diff --git a/sema4ai/pyproject.toml b/sema4ai/pyproject.toml index 9f83aff0..67b54f74 100644 --- a/sema4ai/pyproject.toml +++ b/sema4ai/pyproject.toml @@ -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 "] readme = "README.md" diff --git a/sema4ai/src/sema4ai_code/__init__.py b/sema4ai/src/sema4ai_code/__init__.py index 0bc83f67..5a93436a 100644 --- a/sema4ai/src/sema4ai_code/__init__.py +++ b/sema4ai/src/sema4ai_code/__init__.py @@ -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__)