Bump version to 0.3.1

This commit is contained in:
murashit 2026-05-19 22:59:56 +09:00
parent 67d9f97f88
commit 4f22e5958a
5 changed files with 13 additions and 5 deletions

7
.github/release-notes/0.3.1.md vendored Normal file
View file

@ -0,0 +1,7 @@
## Changes
- Added optional fixed tags for archived thread Markdown exports.
- Fixed prompt-submit hook display so pre-turn hook output stays attached to the correct turn.
- Improved completed turn work-log placement and message stream stability during live updates.
- Fixed active assistant responses so incomplete streaming text is not offered as a copied final message.
- Preserved duplicate auto-review summaries when multiple reviewed requests have the same text.

View file

@ -1,7 +1,7 @@
{
"id": "codex-panel",
"name": "Codex Panel",
"version": "0.3.0",
"version": "0.3.1",
"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": "0.3.0",
"version": "0.3.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "codex-panel",
"version": "0.3.0",
"version": "0.3.1",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^25.6.0",

View file

@ -1,6 +1,6 @@
{
"name": "codex-panel",
"version": "0.3.0",
"version": "0.3.1",
"description": "Codex in your Obsidian sidebar.",
"main": "main.js",
"author": "murashit",

View file

@ -13,5 +13,6 @@
"0.1.12": "1.12.0",
"0.1.13": "1.12.0",
"0.2.0": "1.12.0",
"0.3.0": "1.12.0"
"0.3.0": "1.12.0",
"0.3.1": "1.12.0"
}