From dcbd0f8824e4fb2b5d0c0ce2ceaa73a7952507d1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jul 2024 22:10:38 -0300 Subject: [PATCH] publish new versions (#1580) Co-authored-by: lucasfernog --- .changes/pre.json | 1 + Cargo.lock | 4 ++-- examples/api/src-tauri/CHANGELOG.md | 6 ++++++ examples/api/src-tauri/Cargo.toml | 4 ++-- plugins/log/CHANGELOG.md | 4 ++++ plugins/log/Cargo.toml | 2 +- 6 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index d93969ddb6..d6a2b58d3c 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -61,6 +61,7 @@ ".changes/http-unsafe-headers.md", ".changes/http-user-agent.md", ".changes/impl-ext-for-webview-windows.md", + ".changes/log-split.md", ".changes/msrv-1.75.md", ".changes/named-tempfile-updater-windows.md", ".changes/notifcation-permission-commands.md", diff --git a/Cargo.lock b/Cargo.lock index 74622341f1..29a5a13590 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -200,7 +200,7 @@ checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" [[package]] name = "api" -version = "2.0.0-beta.14" +version = "2.0.0-beta.15" dependencies = [ "log", "serde", @@ -6589,7 +6589,7 @@ dependencies = [ [[package]] name = "tauri-plugin-log" -version = "2.0.0-beta.8" +version = "2.0.0-beta.9" dependencies = [ "android_logger", "byte-unit", diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index fdbab28a4c..b834508a1b 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.15] + +### Dependencies + +- Upgraded to `log-plugin@2.0.0-beta.9` + ## \[2.0.0-beta.14] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index 04b57bb6d0..22b5804199 100644 --- a/examples/api/src-tauri/Cargo.toml +++ b/examples/api/src-tauri/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "api" publish = false -version = "2.0.0-beta.14" +version = "2.0.0-beta.15" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -19,7 +19,7 @@ serde_json = { workspace = true } serde = { workspace = true } tiny_http = "0.12" log = { workspace = true } -tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-beta.8" } +tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-beta.9" } tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-beta.11", features = [ "watch" ] } tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.1.0-beta.6" } tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-beta.11" } diff --git a/plugins/log/CHANGELOG.md b/plugins/log/CHANGELOG.md index 0e4c343411..59ddc82cb3 100644 --- a/plugins/log/CHANGELOG.md +++ b/plugins/log/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.9] + +- [`20a1d24e`](https://github.com/tauri-apps/plugins-workspace/commit/20a1d24ee004e77c2d12a0e20d258ce120216ed1) ([#1579](https://github.com/tauri-apps/plugins-workspace/pull/1579) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Added `Builder::split` which returns the raw logger implementation so you can pipe to other loggers such as `multi_log` or `tauri-plugin-devtools`. + ## \[2.0.0-beta.8] - [`22a17980`](https://github.com/tauri-apps/plugins-workspace/commit/22a17980ff4f6f8c40adb1b8f4ffc6dae2fe7e30) ([#1537](https://github.com/tauri-apps/plugins-workspace/pull/1537) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Update to tauri beta.24. diff --git a/plugins/log/Cargo.toml b/plugins/log/Cargo.toml index c62e5f2592..e532265a7d 100644 --- a/plugins/log/Cargo.toml +++ b/plugins/log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-log" -version = "2.0.0-beta.8" +version = "2.0.0-beta.9" description = "Configurable logging for your Tauri app." authors = { workspace = true } license = { workspace = true }