diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bc7e4aae..256c8810 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.16.0" + ".": "0.16.1" } diff --git a/package.json b/package.json index 80f7314b..50853f8c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@openhands/extensions", - "version": "0.16.0", + "version": "0.16.1", "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 a0d86f7e..4e464697 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "openhands-extensions" -version = "0.16.0" +version = "0.16.1" 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 4388c2c7..59df2528 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.16.0" # x-release-please-version +_FALLBACK_VERSION = "0.16.1" # x-release-please-version try: __version__: str = version("openhands-extensions")