diff --git a/docs/changelog.md b/docs/changelog.md index 838f237c..aee1677e 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,4 +1,4 @@ -## Unreleased +## New in 2.9.0 (2024-12-21) - Add Data Sources to the Packages tree - Hover (tree item) action in root element to Drop all Data Sources diff --git a/sema4ai/package.json b/sema4ai/package.json index 16f7127f..07116393 100644 --- a/sema4ai/package.json +++ b/sema4ai/package.json @@ -14,7 +14,7 @@ "url": "https://github.com/Sema4AI/vscode-extension/.git" }, "license": "SEE LICENSE", - "version": "2.8.1", + "version": "2.9.0", "icon": "images/icon.png", "engines": { "vscode": "^1.65.0" diff --git a/sema4ai/pyproject.toml b/sema4ai/pyproject.toml index a05de3a2..1bf05f55 100644 --- a/sema4ai/pyproject.toml +++ b/sema4ai/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sema4ai" -version = "2.8.1" +version = "2.9.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 373b809a..41b85159 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.8.1" +__version__ = "2.9.0" version_info: list[int] = [int(x) for x in __version__.split(".")] __file__ = os.path.abspath(__file__)