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
This commit is contained in:
Aaron Bockelie 2025-08-12 20:55:22 -05:00
parent bcf0f2d4ab
commit eeb40f04be
No known key found for this signature in database
GPG key ID: BA464FC9847A832A
4 changed files with 4 additions and 3 deletions

1
.github-tracking Normal file
View file

@ -0,0 +1 @@
github

View file

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

View file

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

View file

@ -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';
}