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 .github/workflows/ghostapi-pr-safety.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
permissions: {}

env:
GHOSTAPI_VERSION: "0.2.0"
GHOSTAPI_VERSION: "0.2.1"

jobs:
safety:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The format follows the spirit of [Keep a Changelog](https://keepachangelog.com/e

## Unreleased

## 0.2.0 - 2026-09-01
## 0.2.1 - 2026-09-01

### Security

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ Generic MCP configuration:
"mcpServers": {
"ghostapi": {
"command": "npx",
"args": ["-y", "@yiaany/ghostapi@0.2.0", "mcp"]
"args": ["-y", "@yiaany/ghostapi@0.2.1", "mcp"]
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Set `GHOSTAPI_DATA_DIR` to an ephemeral CI directory and use one immutable Ghost
set -u

export GHOSTAPI_DATA_DIR="$CI_WORKSPACE/.ghostapi-ci"
export GHOSTAPI_VERSION="0.2.0"
export GHOSTAPI_VERSION="0.2.1"
npm install --global "@yiaany/ghostapi@$GHOSTAPI_VERSION"

run_status=0
Expand Down
2 changes: 1 addition & 1 deletion docs/github-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The repository workflow at [`.github/workflows/ghostapi-pr-safety.yml`](../.gith

```yaml
env:
GHOSTAPI_VERSION: "0.2.0"
GHOSTAPI_VERSION: "0.2.1"

- name: Install pinned GhostAPI
run: npm install --global "@yiaany/ghostapi@$GHOSTAPI_VERSION"
Expand Down
2 changes: 1 addition & 1 deletion docs/mcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ npx @yiaany/ghostapi mcp
"mcpServers": {
"ghostapi": {
"command": "npx",
"args": ["-y", "@yiaany/ghostapi@0.2.0", "mcp"]
"args": ["-y", "@yiaany/ghostapi@0.2.1", "mcp"]
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yiaany/ghostapi",
"version": "0.2.0",
"version": "0.2.1",
"description": "Local API simulation and test evidence for AI-assisted development.",
"type": "module",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion test/githubWorkflow.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe("GhostAPI PR safety workflow", () => {
it("uses immutable actions, enforced execution, sanitized evidence, and safe comment boundaries", async () => {
const workflow = await readWorkflow(workflowPath);

expect(workflow).toContain('GHOSTAPI_VERSION: "0.2.0"');
expect(workflow).toContain('GHOSTAPI_VERSION: "0.2.1"');
expect(workflow).toContain(
"actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683",
);
Expand Down
2 changes: 1 addition & 1 deletion test/setupGenerator.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ describe("repo setup generator", () => {
).toContain('"command": "npx"');
expect(
setup.files.find((file) => file.path === ".cursor/mcp.json")?.content,
).toContain('"@yiaany/ghostapi@0.2.0"');
).toContain('"@yiaany/ghostapi@0.2.1"');
expect(
setup.files.find((file) => file.path === "AGENTS.md")?.content,
).toContain("do not run it manually in a terminal");
Expand Down
Loading