diff --git a/apps/desktop/src-tauri/Cargo.toml b/apps/desktop/src-tauri/Cargo.toml index 8da9d9b7..7e1f4559 100644 --- a/apps/desktop/src-tauri/Cargo.toml +++ b/apps/desktop/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "markflowy" -version = "0.10.0" +version = "0.10.1" description = "A Markdown Editor App" authors = ["drl990114"] license = " AGPL-3.0" @@ -9,7 +9,11 @@ edition = "2021" [lib] name = "markflowy" -crate-type = ["staticlib", "cdylib", "rlib"] +crate-type = [ + "staticlib", + "cdylib", + "rlib", +] [build-dependencies.tauri-build] version = "2.0.0-beta.17" @@ -26,7 +30,6 @@ tauri-plugin-store = "2.0.0-beta.8" tauri-plugin-os = "2.0.0-beta.6" tauri-plugin-shell = "2.0.0-beta.7" tauri-plugin-dialog = "2.0.0-beta.9" -tauri-plugin-notification = { version = "2.0.0-beta.7", features = ["windows7-compat"] } tauri-plugin-clipboard-manager = "2.1.0-beta.4" regex = "1.10.4" lazy_static = "1.4.0" @@ -34,13 +37,20 @@ tracing = "0.1.40" tracing-subscriber = "0.3.18" window-vibrancy = "0.5.0" +[dependencies.tauri-plugin-notification] +version = "2.0.0-beta.7" +features = ["windows7-compat"] + [dependencies.serde] version = "1.0" features = ["derive"] [dependencies.tauri] version = "2.0.0-beta.22" -features = ["protocol-asset", "devtools"] +features = [ + "protocol-asset", + "devtools", +] [dependencies.mf-utils] path = "../../../crates/utils" diff --git a/apps/desktop/src-tauri/tauri.conf.json b/apps/desktop/src-tauri/tauri.conf.json index aae3f5ff..0cc67514 100644 --- a/apps/desktop/src-tauri/tauri.conf.json +++ b/apps/desktop/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "MarkFlowy", - "version": "0.10.0", + "version": "0.10.1", "identifier": "com.drl990114.markflowy", "build": { "beforeDevCommand": "yarn dev",