diff --git a/.github/release-notes/2.8.0.md b/.github/release-notes/2.8.0.md new file mode 100644 index 00000000..2e69a195 --- /dev/null +++ b/.github/release-notes/2.8.0.md @@ -0,0 +1,6 @@ +## Changes + +- Adds heading suggestions to wikilink completion while composing prompts. +- Adds volatile prompt history for selection rewrite, so recent rewrite prompts can be reused within the current Obsidian session. +- Updates Codex App Server compatibility for Codex CLI 0.136.0. +- Improves chat message rendering for non-Markdown output and work-detail events. diff --git a/manifest.json b/manifest.json index 087ee4f6..7daa0289 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "codex-panel", "name": "Codex Panel", - "version": "2.7.1", + "version": "2.8.0", "minAppVersion": "1.12.0", "description": "Codex in your sidebar.", "author": "murashit", diff --git a/package-lock.json b/package-lock.json index 880e4f64..9af57c0d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "codex-panel", - "version": "2.7.1", + "version": "2.8.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "codex-panel", - "version": "2.7.1", + "version": "2.8.0", "license": "Apache-2.0", "dependencies": { "preact": "^10.29.2" diff --git a/package.json b/package.json index 972ed711..066df6a1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codex-panel", - "version": "2.7.1", + "version": "2.8.0", "description": "Codex in your Obsidian sidebar.", "main": "main.js", "author": "murashit", diff --git a/versions.json b/versions.json index 5e4e3f5a..b1b2e86e 100644 --- a/versions.json +++ b/versions.json @@ -37,5 +37,6 @@ "2.5.0": "1.12.0", "2.6.0": "1.12.0", "2.7.0": "1.12.0", - "2.7.1": "1.12.0" + "2.7.1": "1.12.0", + "2.8.0": "1.12.0" }