From 0f6c1e582fba50b8960fd198e633563b5beba789 Mon Sep 17 00:00:00 2001 From: Mike Thicke Date: Tue, 12 May 2026 20:35:49 -0400 Subject: [PATCH] Release fixes --- .github/workflows/release.yml | 10 ++++++++++ .../2026-05/2026-05-12T19-27-15-git-34f15e1.md | 15 +++++++++++++++ manifest.json | 2 +- package.json | 2 +- src/versions.json | 3 --- versions.json | 4 ++++ 6 files changed, 31 insertions(+), 5 deletions(-) create mode 100644 .worklog/2026-05/2026-05-12T19-27-15-git-34f15e1.md delete mode 100644 src/versions.json create mode 100644 versions.json diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3efa17b..7da266d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,6 +11,8 @@ jobs: runs-on: ubuntu-latest permissions: contents: write + id-token: write + attestations: write steps: - uses: actions/checkout@v3 @@ -24,6 +26,14 @@ jobs: npm install npm run build + - name: Generate build provenance attestations + uses: actions/attest-build-provenance@v2 + with: + subject-path: | + dist/main.js + dist/manifest.json + dist/styles.css + - name: Create release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.worklog/2026-05/2026-05-12T19-27-15-git-34f15e1.md b/.worklog/2026-05/2026-05-12T19-27-15-git-34f15e1.md new file mode 100644 index 0000000..18c7466 --- /dev/null +++ b/.worklog/2026-05/2026-05-12T19-27-15-git-34f15e1.md @@ -0,0 +1,15 @@ +--- +time: 2026-05-12T19:27:15-04:00 +kind: commit +author: Mike Thicke +refs: + - git:34f15e16bdd96057498a92e11221c7cf98edf202 +summary: Add explicit codemirror dependencies to address lint issues +--- + +Add explicit codemirror dependencies to address lint issues + +``` +package-lock.json | 16 ++++++---------- + package.json | 2 ++ +``` diff --git a/manifest.json b/manifest.json index 661ddbd..0ea16cc 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "co-intelligence", "name": "Co-Intelligence AI", - "version": "1.0.10", + "version": "1.0.11", "minAppVersion": "1.11.4", "description": "A full AI chat experience with models from OpenAI, Anthropic, Google, and Perplexity.", "author": "Mike Thicke", diff --git a/package.json b/package.json index 5f5c00a..a998118 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "co-intelligence", - "version": "1.0.10", + "version": "1.0.11", "description": "Obsidian plugin for interacting with AI tools", "main": "index.ts", "scripts": { diff --git a/src/versions.json b/src/versions.json deleted file mode 100644 index c681eb3..0000000 --- a/src/versions.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "1.0.0": "1.8.0" -} diff --git a/versions.json b/versions.json new file mode 100644 index 0000000..f7184c9 --- /dev/null +++ b/versions.json @@ -0,0 +1,4 @@ +{ + "1.0.0": "1.8.0", + "1.0.11": "1.11.4" +}