Bump version to 0.3.0

This commit is contained in:
murashit 2026-05-19 05:32:46 +09:00
parent 8f7ddf63f4
commit ee00f0f561
5 changed files with 12 additions and 5 deletions

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

@ -0,0 +1,6 @@
## Changes
- Added `/refer` so the current turn can reference another non-archived thread without switching away.
- Added optional Markdown export when archiving a thread, with configurable folder, filename, and tag settings.
- Added `/mcp` for inspecting MCP server inventory from the panel.
- Improved slash command suggestions for model and reasoning effort arguments.

View file

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

View file

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

View file

@ -12,5 +12,6 @@
"0.1.11": "1.12.0",
"0.1.12": "1.12.0",
"0.1.13": "1.12.0",
"0.2.0": "1.12.0"
"0.2.0": "1.12.0",
"0.3.0": "1.12.0"
}