From 663ada1cc26d69802ce4ac58cbec7dd9dd410537 Mon Sep 17 00:00:00 2001 From: JonasKruckenberg Date: Sat, 9 Sep 2023 22:27:51 +0000 Subject: [PATCH] [create-pull-request] automated change --- .changes/update-elk.md | 5 ----- Cargo.lock | 2 +- src-tauri/CHANGELOG.md | 4 ++++ src-tauri/Cargo.toml | 12 +++++++++--- 4 files changed, 14 insertions(+), 9 deletions(-) delete mode 100644 .changes/update-elk.md diff --git a/.changes/update-elk.md b/.changes/update-elk.md deleted file mode 100644 index 37026ef..0000000 --- a/.changes/update-elk.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"elk-native": minor ---- - -Update elk to [v0.10.1](https://github.com/elk-zone/elk/releases/tag/v0.10.1). diff --git a/Cargo.lock b/Cargo.lock index b313bd7..bb2bb8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -55,7 +55,7 @@ checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61" [[package]] name = "app" -version = "0.4.0" +version = "0.5.0" dependencies = [ "env_logger", "log", diff --git a/src-tauri/CHANGELOG.md b/src-tauri/CHANGELOG.md index 3a53c1d..83a3fee 100644 --- a/src-tauri/CHANGELOG.md +++ b/src-tauri/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[0.5.0] + +- [`b0a9483`](https://github.com/elk-zone/elk-native/commit/b0a9483afaaf789147ab77d2571e4f276ac291f8)([#40](https://github.com/elk-zone/elk-native/pull/40)) Update elk to [v0.10.1](https://github.com/elk-zone/elk/releases/tag/v0.10.1). + ## \[0.4.0] - Added menu items to open Privacy Policy and License. diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index ec4f4e8..b2442df 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "app" -version = "0.4.0" +version = "0.5.0" description = "A Tauri App" authors = [ "you" ] license = "" @@ -10,12 +10,18 @@ edition = "2021" rust-version = "1.59" [build-dependencies] -tauri-build = { version = "1.4.0", features = [] } +tauri-build = { version = "1.4.0", features = [ ] } [dependencies] serde_json = "1.0" serde = { version = "1.0", features = [ "derive" ] } -tauri = { version = "1.2.4", features = ["shell-open", "updater", "window-maximize", "window-start-dragging", "window-unmaximize"] } +tauri = { version = "1.2.4", features = [ + "shell-open", + "updater", + "window-maximize", + "window-start-dragging", + "window-unmaximize" +] } tauri-plugin-log = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev", features = [ "colored" ] } tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" } tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" }