Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.1"
".": "0.1.2"
}
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [0.1.2](https://github.com/wangauone/agent-plugin-sync/compare/0.1.1...0.1.2) (2026-08-20)


### Features

* **ci:** move a stable tag on each release for ad-hoc runs ([6502afe](https://github.com/wangauone/agent-plugin-sync/commit/6502afe71e762d4e438d4df01876d843eb3a8e88))


### Bug Fixes

* **ci:** move the stable tag through the refs API ([07a4ba7](https://github.com/wangauone/agent-plugin-sync/commit/07a4ba71aa3ed2129fcf96a9729955b15e0dc1d4))
* **ci:** point stable at the latest release, not the branch head ([8d6ecc7](https://github.com/wangauone/agent-plugin-sync/commit/8d6ecc7a30b1bbcfdc80634a95eaeba9d65ee8db))
* **ci:** resolve the tool version from job_workflow_sha ([8dcdfb3](https://github.com/wangauone/agent-plugin-sync/commit/8dcdfb325edf0175b6f9a7ec2283867175cdd4fe))
* **ci:** use job.workflow_sha, the documented context name ([7aa088f](https://github.com/wangauone/agent-plugin-sync/commit/7aa088f0449daa0855a7206893e07ec6fe0237b8))

## [0.1.1](https://github.com/wangauone/agent-plugin-sync/compare/0.1.0...0.1.1) (2026-08-20)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "agent-plugin-sync"
version = "0.1.1"
version = "0.1.2"
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"
Expand Down
2 changes: 1 addition & 1 deletion src/agent_plugin_sync/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Generate harness-specific plugin manifests from a single Agent Plugin spec source."""

__version__ = "0.1.1" # x-release-please-version
__version__ = "0.1.2" # x-release-please-version

# Namespace we own for generator input inside plugin.json `extensions`.
PLUGIN_EXTENSION_NS = "com.google.cloud.data.agent-plugins"