diff --git a/CHANGELOG.md b/CHANGELOG.md index 66b8c5c..3aa92c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Chock changelog -## Unreleased +## 0.9.3 — A `kind: script` gate that runs a policy's own program, and a native Devin plugin format and marketplace tree on agentseam 0.3.2 - **`kind: script` gate**: a `hook.gate` whose check is the policy's own program, for a check no declarative kind can hold -- a parser, a flow model over a method body, a rule table larger diff --git a/CITATION.cff b/CITATION.cff index 2961703..dc9a6c7 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -7,7 +7,7 @@ abstract: >- type: software authors: - name: Open Coder AI -version: 0.9.2 +version: 0.9.3 license: Apache-2.0 repository-code: https://github.com/open-coder-ai/chock url: https://github.com/open-coder-ai/chock diff --git a/action.yml b/action.yml index 5a47d7d..7fb99fc 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,7 @@ inputs: version: description: Chock version to install required: false - default: "0.9.2" + default: "0.9.3" runs: using: composite diff --git a/docs/assets/social-preview.png b/docs/assets/social-preview.png index ded994f..e6a432f 100644 Binary files a/docs/assets/social-preview.png and b/docs/assets/social-preview.png differ diff --git a/docs/assets/social-preview.svg b/docs/assets/social-preview.svg index f776edb..1f295e6 100644 --- a/docs/assets/social-preview.svg +++ b/docs/assets/social-preview.svg @@ -1,5 +1,5 @@ + role="img" aria-label="chock — governance-as-code for AI coding agents: write a rule once and every agent obeys it. A policy compiles to whatever control each agent actually supports. 15 agents (claude, aider, antigravity, codex, copilot, cursor, devin, gemini, grok, junie, kimi-code, replit, tabnine, vscode, windsurf); 9 enforcement surfaces (ambient-rule, git-hook, ci-gate, pre-tool-use, stop, managed-setting, gateway, mcp-gateway, agent-hooks), of which 4 are installed by chock sync (ambient-rule, ci-gate, git-hook, stop); 8 everyday commands (init, add, remove, sync, check, status, enable, disable). Python 3.11–3.13, Apache-2.0, on PyPI as chock, version 0.9.3."> @@ -10,7 +10,7 @@ open-coder-ai/chock - v0.9.2 · APACHE-2.0 + v0.9.3 · APACHE-2.0 — GOVERNANCE AS CODE Write the rule once. diff --git a/docs/installation.md b/docs/installation.md index ef37589..09ac197 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -94,10 +94,10 @@ chock init . Use the action in a workflow: ```yaml -- uses: open-coder-ai/chock@v0.9.2 +- uses: open-coder-ai/chock@v0.9.3 with: command: check - version: 0.9.2 + version: 0.9.3 ``` The action installs the pinned version via `pipx` and runs the command. The `v1` major diff --git a/pyproject.toml b/pyproject.toml index 08e815e..050419c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "chock" # Version contract (docs/compatibility.md): PATCH releases are emitter-byte-identical; # MINOR releases may change compiled output. 0.1.0 is the first public release; the # 0.0.1a0 pre-release exists only because PyPI names are claimed by uploading. -version = "0.9.2" +version = "0.9.3" description = "Governance-as-code for AI coding agents: write a rule once, enforce it on git hooks, CI, and every agent" readme = "README.md" # PEP 639 SPDX expression; needs setuptools >= 77 (pinned in build-system below).