From 396d07be6607df5b1625aefa8af5e32ee59f9266 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sun, 13 Jul 2025 11:51:26 +0100 Subject: [PATCH] Bump versions to 0.5.1 --- frontend/obsidian-plugin/manifest.json | 2 +- frontend/obsidian-plugin/package.json | 2 +- frontend/package-lock.json | 6 +++--- frontend/sync-client/package.json | 2 +- frontend/test-client/package.json | 2 +- manifest.json | 2 +- sync-server/Cargo.lock | 2 +- sync-server/Cargo.toml | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/frontend/obsidian-plugin/manifest.json b/frontend/obsidian-plugin/manifest.json index d1a50232..42ebe6da 100644 --- a/frontend/obsidian-plugin/manifest.json +++ b/frontend/obsidian-plugin/manifest.json @@ -1,7 +1,7 @@ { "id": "vault-link", "name": "VaultLink", - "version": "0.5.0", + "version": "0.5.1", "minAppVersion": "0.0.0", "description": "Self-hosted synchronization and collaboration for your Vault.", "author": "Andras Schmelczer", diff --git a/frontend/obsidian-plugin/package.json b/frontend/obsidian-plugin/package.json index e7b18a35..24a95e03 100644 --- a/frontend/obsidian-plugin/package.json +++ b/frontend/obsidian-plugin/package.json @@ -1,6 +1,6 @@ { "name": "vault-link-obsidian-plugin", - "version": "0.5.0", + "version": "0.5.1", "description": "This is a sample plugin for Obsidian (https://obsidian.md)", "main": "main.js", "scripts": { diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 549f88e6..36221400 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -6361,7 +6361,7 @@ }, "obsidian-plugin": { "name": "vault-link-obsidian-plugin", - "version": "0.5.0", + "version": "0.5.1", "license": "MIT", "devDependencies": { "@types/jest": "^29.5.14", @@ -6389,7 +6389,7 @@ } }, "sync-client": { - "version": "0.5.0", + "version": "0.5.1", "dependencies": { "byte-base64": "^1.1.0", "minimatch": "^10.0.1", @@ -6432,7 +6432,7 @@ } }, "test-client": { - "version": "0.5.0", + "version": "0.5.1", "bin": { "test-client": "dist/cli.js" }, diff --git a/frontend/sync-client/package.json b/frontend/sync-client/package.json index 7231c099..f80fb672 100644 --- a/frontend/sync-client/package.json +++ b/frontend/sync-client/package.json @@ -1,6 +1,6 @@ { "name": "sync-client", - "version": "0.5.0", + "version": "0.5.1", "main": "dist/sync-client.node.js", "browser": "dist/sync-client.web.js", "types": "dist/types/index.d.ts", diff --git a/frontend/test-client/package.json b/frontend/test-client/package.json index 096b82af..f0d4d533 100644 --- a/frontend/test-client/package.json +++ b/frontend/test-client/package.json @@ -1,6 +1,6 @@ { "name": "test-client", - "version": "0.5.0", + "version": "0.5.1", "private": true, "bin": { "test-client": "./dist/cli.js" diff --git a/manifest.json b/manifest.json index d1a50232..42ebe6da 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "vault-link", "name": "VaultLink", - "version": "0.5.0", + "version": "0.5.1", "minAppVersion": "0.0.0", "description": "Self-hosted synchronization and collaboration for your Vault.", "author": "Andras Schmelczer", diff --git a/sync-server/Cargo.lock b/sync-server/Cargo.lock index ef7d3e6c..6080baf4 100644 --- a/sync-server/Cargo.lock +++ b/sync-server/Cargo.lock @@ -2194,7 +2194,7 @@ dependencies = [ [[package]] name = "sync_server" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "axum", diff --git a/sync-server/Cargo.toml b/sync-server/Cargo.toml index 0d328cb9..94539a48 100644 --- a/sync-server/Cargo.toml +++ b/sync-server/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Andras Schmelczer "] edition = "2024" license = "MIT" repository = "https://github.com/schmelczer/vault-link" -version = "0.5.0" +version = "0.5.1" [dependencies] serde = { version = "1.0.219", default-features = false, features = ["derive"] }