diff --git a/package.json b/package.json index 13b2d5cf..0f8e53b8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "lume", "private": true, - "version": "1.1.0", + "version": "1.1.1", "scripts": { "dev": "vite", "build": "vite build", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index a62a9cf8..915730c5 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lume" -version = "1.1.0" +version = "1.1.1" description = "nostr client" authors = ["Ren Amamiya"] license = "" @@ -16,12 +16,34 @@ tauri-build = { version = "1.2", features = [] } [dependencies] serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } -tauri = { version = "1.2", features = [ "fs-remove-file", "fs-write-file", "window-create", "path-all", "fs-read-dir", "fs-read-file", "clipboard-read-text", "clipboard-write-text", "dialog-open", "http-all", "http-multipart", "notification-all", "os-all", "process-relaunch", "shell-open", "system-tray", "updater", "window-close", "window-start-dragging"] } +tauri = { version = "1.2", features = [ + "fs-remove-file", + "fs-write-file", + "window-create", + "path-all", + "fs-read-dir", + "fs-read-file", + "clipboard-read-text", + "clipboard-write-text", + "dialog-open", + "http-all", + "http-multipart", + "notification-all", + "os-all", + "process-relaunch", + "shell-open", + "system-tray", + "updater", + "window-close", + "window-start-dragging", +] } tauri-plugin-single-instance = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } tauri-plugin-autostart = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } tauri-plugin-stronghold = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } tauri-plugin-upload = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } -sqlx-cli = {version = "0.7.0", default-features = false, features = ["sqlite"] } +sqlx-cli = { version = "0.7.0", default-features = false, features = [ + "sqlite", +] } rust-argon2 = "1.0" rand = "0.8.5" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 5bbeecd9..51a334d4 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "Lume", - "version": "1.1.0" + "version": "1.1.1" }, "tauri": { "allowlist": { diff --git a/src/stores/constants.tsx b/src/stores/constants.tsx index abbdba47..3e5933f1 100644 --- a/src/stores/constants.tsx +++ b/src/stores/constants.tsx @@ -1,4 +1,4 @@ -export const APP_VERSION = '1.1.0'; +export const APP_VERSION = '1.1.1'; export const DEFAULT_AVATAR = 'https://void.cat/d/5VKmKyuHyxrNMf9bWSVPih';