From 82b084e65c65256385879d4f743ea6f15c383a25 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 31 Aug 2024 18:19:34 -0300 Subject: [PATCH] apply version updates (#10828) --- .changes/pre.json | 2 ++ Cargo.lock | 4 ++-- crates/tauri-bundler/CHANGELOG.md | 6 ++++++ crates/tauri-bundler/Cargo.toml | 2 +- crates/tauri-cli/CHANGELOG.md | 10 ++++++++++ crates/tauri-cli/Cargo.toml | 4 ++-- crates/tauri-cli/metadata-v2.json | 2 +- packages/cli/CHANGELOG.md | 10 ++++++++++ packages/cli/package.json | 2 +- 9 files changed, 35 insertions(+), 7 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index 71aff0934..b40d58c9b 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -46,6 +46,7 @@ ".changes/fix-export-default-permissions.md", ".changes/fix-ios-build-older-swift.md", ".changes/fix-ios-bun-support.md", + ".changes/fix-ios-signing-api-key.md", ".changes/fix-ipc-fallback.md", ".changes/fix-manifest-migration.md", ".changes/fix-missing-codesign-error-macos.md", @@ -64,6 +65,7 @@ ".changes/ios-frameworks.md", ".changes/isolation-main-frame-origin.md", ".changes/linux-option-gtk-app-id.md", + ".changes/maintainer-fallback.md", ".changes/migrate-plugins.md", ".changes/migrate-prevent-duplications.md", ".changes/migrate-v1-plugin-npm.md", diff --git a/Cargo.lock b/Cargo.lock index 15e0e8f2d..d325c27e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7099,7 +7099,7 @@ dependencies = [ [[package]] name = "tauri-bundler" -version = "2.0.1-rc.6" +version = "2.0.1-rc.7" dependencies = [ "anyhow", "ar", @@ -7142,7 +7142,7 @@ dependencies = [ [[package]] name = "tauri-cli" -version = "2.0.0-rc.8" +version = "2.0.0-rc.9" dependencies = [ "anyhow", "axum", diff --git a/crates/tauri-bundler/CHANGELOG.md b/crates/tauri-bundler/CHANGELOG.md index 7609cd561..9d97fa184 100644 --- a/crates/tauri-bundler/CHANGELOG.md +++ b/crates/tauri-bundler/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.1-rc.7] + +### Enhancements + +- [`5ec74456b`](https://www.github.com/tauri-apps/tauri/commit/5ec74456b9ae45eaa63e225856de1b7eb83abe6f) ([#10825](https://www.github.com/tauri-apps/tauri/pull/10825) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) The debian `Maintainer` field now defaults to the Cargo.toml authors, but fallbacks to the `publisher` config value and the second part of the bundle identifier. + ## \[2.0.1-rc.6] ### New Features diff --git a/crates/tauri-bundler/Cargo.toml b/crates/tauri-bundler/Cargo.toml index f2a7c8c6e..3ab118cf4 100644 --- a/crates/tauri-bundler/Cargo.toml +++ b/crates/tauri-bundler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-bundler" -version = "2.0.1-rc.6" +version = "2.0.1-rc.7" authors = [ "George Burton ", "Tauri Programme within The Commons Conservancy", diff --git a/crates/tauri-cli/CHANGELOG.md b/crates/tauri-cli/CHANGELOG.md index 43f7a6d17..40a34bf76 100644 --- a/crates/tauri-cli/CHANGELOG.md +++ b/crates/tauri-cli/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[2.0.0-rc.9] + +### Bug Fixes + +- [`5af1f5dec`](https://www.github.com/tauri-apps/tauri/commit/5af1f5dec1bb98f335169df8c5e30c19a24cae07) ([#10851](https://www.github.com/tauri-apps/tauri/pull/10851) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fixes `ios build` failing to build iOS app in CI when using an API key for automatic signing. + +### Dependencies + +- Upgraded to `tauri-bundler@2.0.1-rc.7` + ## \[2.0.0-rc.8] ### New Features diff --git a/crates/tauri-cli/Cargo.toml b/crates/tauri-cli/Cargo.toml index 139f77462..8eb783ac2 100644 --- a/crates/tauri-cli/Cargo.toml +++ b/crates/tauri-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-cli" -version = "2.0.0-rc.8" +version = "2.0.0-rc.9" authors = ["Tauri Programme within The Commons Conservancy"] edition = "2021" rust-version = "1.71" @@ -47,7 +47,7 @@ sublime_fuzzy = "0.7" clap_complete = "4" clap = { version = "4.5", features = ["derive", "env"] } anyhow = "1.0" -tauri-bundler = { version = "2.0.1-rc.6", default-features = false, path = "../tauri-bundler" } +tauri-bundler = { version = "2.0.1-rc.7", default-features = false, path = "../tauri-bundler" } colored = "2.1" serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0", features = ["preserve_order"] } diff --git a/crates/tauri-cli/metadata-v2.json b/crates/tauri-cli/metadata-v2.json index cd695afa3..081a53dbd 100644 --- a/crates/tauri-cli/metadata-v2.json +++ b/crates/tauri-cli/metadata-v2.json @@ -1,6 +1,6 @@ { "cli.js": { - "version": "2.0.0-rc.8", + "version": "2.0.0-rc.9", "node": ">= 10.0.0" }, "tauri": "2.0.0-rc.8", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 6f1c2a3db..63c47b202 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[2.0.0-rc.9] + +### Bug Fixes + +- [`5af1f5dec`](https://www.github.com/tauri-apps/tauri/commit/5af1f5dec1bb98f335169df8c5e30c19a24cae07) ([#10851](https://www.github.com/tauri-apps/tauri/pull/10851) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fixes `ios build` failing to build iOS app in CI when using an API key for automatic signing. + +### Dependencies + +- Upgraded to `tauri-cli@2.0.0-rc.9` + ## \[2.0.0-rc.8] ### New Features diff --git a/packages/cli/package.json b/packages/cli/package.json index a62648dcf..0c656d9e0 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/cli", - "version": "2.0.0-rc.8", + "version": "2.0.0-rc.9", "description": "Command line interface for building Tauri apps", "funding": { "type": "opencollective",