diff --git a/.changes/fix-incomplete-writeFile.md b/.changes/fix-incomplete-writeFile.md deleted file mode 100644 index 4e928b59edb0..000000000000 --- a/.changes/fix-incomplete-writeFile.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri": 'patch:bug' ---- - -Set the correct `truncate` option on `OpenOptions` so that `write_file` can completely overwrite existing files. \ No newline at end of file diff --git a/.changes/fix-webview2-offline-guid.md b/.changes/fix-webview2-offline-guid.md deleted file mode 100644 index 8a4bcc835227..000000000000 --- a/.changes/fix-webview2-offline-guid.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-bundler": 'patch:bug' ---- - -Update the WebView2 offline installer GUIDs to resolve the 404 HTTP response status codes. diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index 9df3f851ab77..4b022d6c94d2 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.5.2] + +### Bug Fixes + +- [`21cdbb41`](https://www.github.com/tauri-apps/tauri/commit/21cdbb41a38f465148bbeb82feb3e7886c320182)([#7982](https://www.github.com/tauri-apps/tauri/pull/7982)) Set the correct `truncate` option on `OpenOptions` so that `write_file` can completely overwrite existing files. + ## \[1.5.1] ### Bug Fixes diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index ac4a891e049c..f1bcbcc6d4d8 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT" name = "tauri" readme = "README.md" repository = "https://github.com/tauri-apps/tauri" -version = "1.5.1" +version = "1.5.2" [package.metadata.docs.rs] no-default-features = true diff --git a/tooling/bundler/CHANGELOG.md b/tooling/bundler/CHANGELOG.md index 76cee2c1f4c6..f8205caed673 100644 --- a/tooling/bundler/CHANGELOG.md +++ b/tooling/bundler/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.4.2] + +### Bug Fixes + +- [`f552c179`](https://www.github.com/tauri-apps/tauri/commit/f552c1796a61a5cfd51fad6d616bea3164b48a21)([#7998](https://www.github.com/tauri-apps/tauri/pull/7998)) Update the WebView2 offline installer GUIDs to resolve the 404 HTTP response status codes. + ## \[1.4.1] ### Bug Fixes diff --git a/tooling/bundler/Cargo.toml b/tooling/bundler/Cargo.toml index 1ad2b19b80d3..22fd635b5748 100644 --- a/tooling/bundler/Cargo.toml +++ b/tooling/bundler/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "tauri-bundler" -version = "1.4.1" +version = "1.4.2" authors = [ "George Burton ", "Tauri Programme within The Commons Conservancy" diff --git a/tooling/cli/CHANGELOG.md b/tooling/cli/CHANGELOG.md index af17f3af70a8..8d30123437f4 100644 --- a/tooling/cli/CHANGELOG.md +++ b/tooling/cli/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.5.3] + +### Dependencies + +- Upgraded to `tauri-bundler@1.4.2` + ## \[1.5.2] ### Dependencies diff --git a/tooling/cli/Cargo.lock b/tooling/cli/Cargo.lock index f1d39a7146dd..1243353b1c41 100644 --- a/tooling/cli/Cargo.lock +++ b/tooling/cli/Cargo.lock @@ -3304,7 +3304,7 @@ dependencies = [ [[package]] name = "tauri-bundler" -version = "1.4.1" +version = "1.4.2" dependencies = [ "anyhow", "ar", @@ -3344,7 +3344,7 @@ dependencies = [ [[package]] name = "tauri-cli" -version = "1.5.2" +version = "1.5.3" dependencies = [ "anyhow", "axum", diff --git a/tooling/cli/Cargo.toml b/tooling/cli/Cargo.toml index d42ec04afb70..0a79161eacb7 100644 --- a/tooling/cli/Cargo.toml +++ b/tooling/cli/Cargo.toml @@ -3,7 +3,7 @@ members = [ "node" ] [package] name = "tauri-cli" -version = "1.5.2" +version = "1.5.3" authors = [ "Tauri Programme within The Commons Conservancy" ] edition = "2021" rust-version = "1.60" @@ -42,7 +42,7 @@ path = "src/main.rs" clap_complete = "4" clap = { version = "4.0", features = [ "derive" ] } anyhow = "1.0" -tauri-bundler = { version = "1.4.1", path = "../bundler", default-features = false } +tauri-bundler = { version = "1.4.2", path = "../bundler", default-features = false } colored = "2.0" once_cell = "1" serde = { version = "1.0", features = [ "derive" ] } diff --git a/tooling/cli/metadata.json b/tooling/cli/metadata.json index 62a101434e2b..b91ecb05c90e 100644 --- a/tooling/cli/metadata.json +++ b/tooling/cli/metadata.json @@ -1,8 +1,8 @@ { "cli.js": { - "version": "1.5.2", + "version": "1.5.3", "node": ">= 10.0.0" }, - "tauri": "1.5.1", + "tauri": "1.5.2", "tauri-build": "1.5.0" } diff --git a/tooling/cli/node/CHANGELOG.md b/tooling/cli/node/CHANGELOG.md index de20c49efcb6..35d1296790bd 100644 --- a/tooling/cli/node/CHANGELOG.md +++ b/tooling/cli/node/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.5.3] + +### Dependencies + +- Upgraded to `tauri-cli@1.5.3` + ## \[1.5.2] ### Dependencies diff --git a/tooling/cli/node/package.json b/tooling/cli/node/package.json index 105d403bf4de..c7a7dbabfed4 100644 --- a/tooling/cli/node/package.json +++ b/tooling/cli/node/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/cli", - "version": "1.5.2", + "version": "1.5.3", "description": "Command line interface for building Tauri apps", "funding": { "type": "opencollective",