From 88660ca49ebb69e04f0f85359e6a605ebb0950d6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 Aug 2026 00:53:58 +0000 Subject: [PATCH] chore(main): release 0.1.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- src/agent_plugin_sync/__init__.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c05df9b..88f7c73 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.3" + ".": "0.1.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fb9e53..090e0cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.4](https://github.com/wangauone/agent-plugin-sync/compare/0.1.3...0.1.4) (2026-08-26) + + +### Features + +* require $schema in plugin.json ([#4](https://github.com/wangauone/agent-plugin-sync/issues/4)) ([a2ed746](https://github.com/wangauone/agent-plugin-sync/commit/a2ed7460acc2bf78484b44cc03af974728bb7b25)) + ## [0.1.3](https://github.com/wangauone/agent-plugin-sync/compare/0.1.2...0.1.3) (2026-08-24) diff --git a/pyproject.toml b/pyproject.toml index c627d1d..142f5d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agent-plugin-sync" -version = "0.1.3" +version = "0.1.4" description = "Generate harness-specific plugin manifests (Gemini CLI, Claude Code, Codex, Antigravity) from a single Agent Plugin spec source (plugin.json + mcp.json)." readme = "README.md" license = "Apache-2.0" diff --git a/src/agent_plugin_sync/__init__.py b/src/agent_plugin_sync/__init__.py index 6671541..f00d5f4 100644 --- a/src/agent_plugin_sync/__init__.py +++ b/src/agent_plugin_sync/__init__.py @@ -1,6 +1,6 @@ """Generate harness-specific plugin manifests from a single Agent Plugin spec source.""" -__version__ = "0.1.3" # x-release-please-version +__version__ = "0.1.4" # x-release-please-version # Namespace we own for generator input inside plugin.json `extensions`. PLUGIN_EXTENSION_NS = "com.google.cloud.data.agent-plugins"