From b465cac37aefa12e7340d44a38725e801a2ffe83 Mon Sep 17 00:00:00 2001 From: "openhands-release-bot[bot]" <290150379+openhands-release-bot[bot]@users.noreply.github.com> Date: Tue, 25 Aug 2026 00:34:25 +0000 Subject: [PATCH] chore(main): release 0.19.0 --- .release-please-manifest.json | 2 +- package.json | 2 +- pyproject.toml | 2 +- python/openhands_extensions/_version.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5e39b941..19ee807a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.18.0" + ".": "0.19.0" } diff --git a/package.json b/package.json index 93b8e6ad..dd514c58 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@openhands/extensions", - "version": "0.18.0", + "version": "0.19.0", "description": "Public OpenHands extension catalogs for skills, plugins, integrations, and automation templates.", "license": "MIT", "type": "module", diff --git a/pyproject.toml b/pyproject.toml index eed0e028..4170562d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "openhands-extensions" -version = "0.18.0" +version = "0.19.0" description = "OpenHands extensions, plugins, and skills (Python bindings for the integration catalog)" requires-python = ">=3.12" dependencies = [ diff --git a/python/openhands_extensions/_version.py b/python/openhands_extensions/_version.py index 1a2548b8..0a889463 100644 --- a/python/openhands_extensions/_version.py +++ b/python/openhands_extensions/_version.py @@ -18,7 +18,7 @@ #: Kept in lock-step with pyproject.toml/package.json by the version test. #: release-please only rewrites a semver found on the annotated line itself, so #: the annotation must stay on the assignment; on its own line it is a no-op. -_FALLBACK_VERSION = "0.18.0" # x-release-please-version +_FALLBACK_VERSION = "0.19.0" # x-release-please-version try: __version__: str = version("openhands-extensions")