diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 71e95baf..d3535156 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.20.0" + ".": "0.21.0" } diff --git a/package.json b/package.json index b48f5983..e1e5d84b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@openhands/extensions", - "version": "0.20.0", + "version": "0.21.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 18333572..42d234d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "openhands-extensions" -version = "0.20.0" +version = "0.21.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 40f7c45d..c305fc70 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.20.0" # x-release-please-version +_FALLBACK_VERSION = "0.21.0" # x-release-please-version try: __version__: str = version("openhands-extensions")