Bump version to 0.1.10

This commit is contained in:
murashit 2026-05-16 07:48:41 +09:00
parent 6d2a076bae
commit bf7b01b5be
6 changed files with 26 additions and 13 deletions

5
.github/release-notes/0.1.10.md vendored Normal file
View file

@ -0,0 +1,5 @@
## Changes
- Added latest-turn rollback, restoring the rolled-back prompt to the composer without reverting local file changes.
- Added hover copy actions for user messages, assistant responses, and proposed plans.
- Clarified README descriptions for rollback, runtime overrides, approval requests, hooks, and wikilink handling.

View file

@ -49,14 +49,21 @@ jobs:
GH_TOKEN: ${{ github.token }}
TAG: ${{ github.ref_name }}
run: |
NOTES_ARGS=(--generate-notes)
NOTES_FILE=".github/release-notes/$TAG.md"
if [ -f "$NOTES_FILE" ]; then
NOTES_ARGS=(--notes-file "$NOTES_FILE")
if [ ! -f "$NOTES_FILE" ]; then
echo "Release notes file is required at $NOTES_FILE"
exit 1
fi
gh release create "$TAG" \
main.js manifest.json styles.css \
--title "$TAG" \
"${NOTES_ARGS[@]}" \
--verify-tag
if gh release view "$TAG" >/dev/null 2>&1; then
gh release edit "$TAG" \
--title "$TAG" \
--notes-file "$NOTES_FILE" \
--verify-tag
else
gh release create "$TAG" \
main.js manifest.json styles.css \
--title "$TAG" \
--notes-file "$NOTES_FILE" \
--verify-tag
fi

View file

@ -1,7 +1,7 @@
{
"id": "codex-panel",
"name": "Codex Panel",
"version": "0.1.9",
"version": "0.1.10",
"minAppVersion": "1.12.0",
"description": "Run Codex from a side panel.",
"author": "murashit",

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "codex-panel",
"version": "0.1.9",
"version": "0.1.10",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "codex-panel",
"version": "0.1.9",
"version": "0.1.10",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^25.6.0",

View file

@ -1,6 +1,6 @@
{
"name": "codex-panel",
"version": "0.1.9",
"version": "0.1.10",
"description": "Obsidian side panel for Codex app-server.",
"main": "main.js",
"author": "murashit",

View file

@ -7,5 +7,6 @@
"0.1.6": "1.12.0",
"0.1.7": "1.12.0",
"0.1.8": "1.12.0",
"0.1.9": "1.12.0"
"0.1.9": "1.12.0",
"0.1.10": "1.12.0"
}