Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release Sema4.ai VSCode extension 2.7.3 #133

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
## Unreleased

## New in 2.7.2 (2024-11-12)
## New in 2.7.3 (2024-11-20)

- Listing actions now will include `query` and `predict` decorators.
- Add `Configure Action Input` internal command.


## New in 2.7.2 (2024-11-12)

- Set `SEMA4AI_CREDENTIAL_API` environment variable if port is communicated from Studio
- Add packages and tools information when submitting an issue.
- Update Action Server to `2.0.0`.
Expand Down
8 changes: 4 additions & 4 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:\sema4ai\vscode-extension\sema4ai)
- Checkout the `master` branch and create a new branch from it (`release/2.7.2`)
- Update version using `python -m dev set-version 2.7.2`
- Checkout the `master` branch and create a new branch from it (`release/2.7.4`)
- Update version using `python -m dev set-version 2.7.4`
- 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.7.2`
- Commit your changes using the following message: `Release Sema4.ai VSCode extension 2.7.4`
- Create PR
- After PR is merged to master, update local repo and create a tag using `git tag sema4ai-2.7.2`
- After PR is merged to master, update local repo and create a tag using `git tag sema4ai-2.7.4`

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.7.2",
"version": "2.7.3",
"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.7.2"
version = "2.7.3"
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.7.2"
__version__ = "2.7.3"
version_info: list[int] = [int(x) for x in __version__.split(".")]

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