From 782432e1fc256e172d73f1a267ac6d31034f1ba1 Mon Sep 17 00:00:00 2001 From: Conal <33135619+Conalh@users.noreply.github.com> Date: Thu, 21 May 2026 18:01:26 -0700 Subject: [PATCH] Prepare v0.1.9 release --- README.md | 2 +- docs/PILOT.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- test/action-metadata.test.mjs | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2c3d05c..05e0746 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ jobs: with: fetch-depth: 0 - - uses: Conalh/ScopeTrail@v0.1.8 + - uses: Conalh/ScopeTrail@v0.1.9 with: fail-on: none ``` diff --git a/docs/PILOT.md b/docs/PILOT.md index c69850e..00ec873 100644 --- a/docs/PILOT.md +++ b/docs/PILOT.md @@ -23,7 +23,7 @@ jobs: with: fetch-depth: 0 - - uses: Conalh/ScopeTrail@v0.1.8 + - uses: Conalh/ScopeTrail@v0.1.9 with: fail-on: none ``` diff --git a/package-lock.json b/package-lock.json index b8874d3..de60304 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "scopetrail", - "version": "0.1.8", + "version": "0.1.9", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "scopetrail", - "version": "0.1.8", + "version": "0.1.9", "license": "MIT", "bin": { "scopetrail": "dist/index.js" diff --git a/package.json b/package.json index b674098..97387f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "scopetrail", - "version": "0.1.8", + "version": "0.1.9", "description": "Code review for AI agent permission drift.", "type": "module", "bin": { diff --git a/test/action-metadata.test.mjs b/test/action-metadata.test.mjs index 9663201..8097419 100644 --- a/test/action-metadata.test.mjs +++ b/test/action-metadata.test.mjs @@ -31,7 +31,7 @@ test('public Action install tags match package version', async () => { const version = packageJson.version; const installTagPattern = new RegExp(`Conalh/ScopeTrail@v${version.replaceAll('.', '\\.')}`); - assert.equal(version, '0.1.8'); + assert.equal(version, '0.1.9'); assert.match(readme, installTagPattern); assert.match(pilotGuide, installTagPattern); });