From eeb40f04be3912d027e374e49868237c0aef0407 Mon Sep 17 00:00:00 2001 From: Aaron Bockelie Date: Tue, 12 Aug 2025 20:55:22 -0500 Subject: [PATCH] chore: Bump version to 0.9.0d - HTTPS port conflict detection and auto-increment - Comprehensive TLS/SSL documentation - Settings UI improvements for HTTPS port availability --- .github-tracking | 1 + manifest.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 .github-tracking diff --git a/.github-tracking b/.github-tracking new file mode 100644 index 0000000..345dcda --- /dev/null +++ b/.github-tracking @@ -0,0 +1 @@ +github diff --git a/manifest.json b/manifest.json index 0b2452c..92d59fb 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "semantic-vault-mcp", "name": "Semantic Notes Vault MCP", - "version": "0.9.0b", + "version": "0.9.0d", "minAppVersion": "0.15.0", "description": "Semantic MCP server providing AI tools with direct vault access via HTTP transport", "author": "Aaron Bockelie", diff --git a/package.json b/package.json index 947493a..c7606cd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-mcp-plugin", - "version": "0.9.0c", + "version": "0.9.0d", "description": "Semantic MCP server plugin providing AI tools with direct Obsidian vault access via HTTP transport", "main": "main.js", "scripts": { diff --git a/src/version.ts b/src/version.ts index 4c9aafb..cf31d9e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,4 +1,4 @@ // Version is injected at build time by sync-version.mjs export function getVersion(): string { - return '0.9.0b'; + return '0.9.0d'; }