Bump version to 2.8.0

This commit is contained in:
murashit 2026-06-03 23:29:14 +09:00
parent c548b5816b
commit dfd51060c2
5 changed files with 12 additions and 5 deletions

6
.github/release-notes/2.8.0.md vendored Normal file
View file

@ -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.

View file

@ -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",

4
package-lock.json generated
View file

@ -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"

View file

@ -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",

View file

@ -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"
}