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 SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dev-key verification trust, and — in the companion GitHub Action `< v0.1.3`
workflow script-injection sink). `0.5.1+` adds bring-your-own-key credential
redaction for `--fix`. Pin the Action to `@v1` (which moves forward) or
`@v0.1.3+`, and install `signetry-core` from source at `@v0.5.3` or later
(`pip install "signetry-core @ git+https://github.com/Signetry/core@v0.6.0"`).
(`pip install "signetry-core @ git+https://github.com/Signetry/core@v0.7.0"`).

## Reporting a vulnerability

Expand Down
2 changes: 1 addition & 1 deletion integrations/git-hooks/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if [[ "${SIGNETRY_SKIP:-0}" == "1" ]]; then
fi

if ! command -v signetry >/dev/null 2>&1; then
echo "signetry: CLI not found — install from source with 'pip install \"signetry-core @ git+https://github.com/Signetry/core@v0.6.0\"'." >&2
echo "signetry: CLI not found — install from source with 'pip install \"signetry-core @ git+https://github.com/Signetry/core@v0.7.0\"'." >&2
echo "signetry: skipping the governance gate (not installed)." >&2
exit 0
fi
Expand Down
2 changes: 1 addition & 1 deletion integrations/github-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ runs:
- name: Install signetry-core
shell: bash
# source-available (All Rights Reserved); not on PyPI — install from source.
run: pip install "signetry-core @ git+https://github.com/Signetry/core@v0.6.0"
run: pip install "signetry-core @ git+https://github.com/Signetry/core@v0.7.0"

- name: Stage the PR change as a working-tree diff
id: stage
Expand Down
4 changes: 2 additions & 2 deletions signetry_core/mcp_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
receipt; the verdict is produced outside the model.

Run it:
pip install "signetry-core[mcp] @ git+https://github.com/Signetry/core@v0.6.0"
pip install "signetry-core[mcp] @ git+https://github.com/Signetry/core@v0.7.0"
python -m signetry_core.mcp_server # stdio transport

Register it with an MCP client (e.g. Claude Code) pointing at this command.
Expand Down Expand Up @@ -106,7 +106,7 @@ def build_server(): # pragma: no cover - exercised only when mcp is installed
except ImportError as exc: # noqa: F841
raise SystemExit(
"The MCP server needs the optional dependency: pip install "
"'signetry-core[mcp] @ git+https://github.com/Signetry/core@v0.6.0'"
"'signetry-core[mcp] @ git+https://github.com/Signetry/core@v0.7.0'"
) from None

mcp = FastMCP("signetry-core")
Expand Down
Loading