From 553a560a30b6f654e1c2d7799a1912c060519393 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 1 Sep 2024 09:15:15 -0300 Subject: [PATCH] publish new versions (#384) Co-authored-by: lucasfernog --- .changes/archive-config.md | 5 ----- .changes/fix-ios-automatic-signing-multiple.md | 7 ------- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 14 deletions(-) delete mode 100644 .changes/archive-config.md delete mode 100644 .changes/fix-ios-automatic-signing-multiple.md diff --git a/.changes/archive-config.md b/.changes/archive-config.md deleted file mode 100644 index 7023d792..00000000 --- a/.changes/archive-config.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"cargo-mobile2": minor ---- - -Added an `ArchiveConfig` parameter to `apple::Target::archive`. diff --git a/.changes/fix-ios-automatic-signing-multiple.md b/.changes/fix-ios-automatic-signing-multiple.md deleted file mode 100644 index 0de743f7..00000000 --- a/.changes/fix-ios-automatic-signing-multiple.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"cargo-mobile2": minor ---- - -Allow skipping code signing on `Apple::Target` `build` and `archive` methods, -which fixes an issue in CI where automatic signing only works on the first execution, -and following runs errors with `Revoke certificate: Your account already has a signing certificate for this machine but it is not present in your keychain`. diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bacb2e4..90890bf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[0.17.0] + +- [`64d3e6f`](https://github.com/tauri-apps/cargo-mobile2/commit/64d3e6f04f2a6613b23caf0038812beab9554acb) ([#383](https://github.com/tauri-apps/cargo-mobile2/pull/383) by [@lucasfernog](https://github.com/tauri-apps/cargo-mobile2/../../lucasfernog)) Added an `ArchiveConfig` parameter to `apple::Target::archive`. +- [`64d3e6f`](https://github.com/tauri-apps/cargo-mobile2/commit/64d3e6f04f2a6613b23caf0038812beab9554acb) ([#383](https://github.com/tauri-apps/cargo-mobile2/pull/383) by [@lucasfernog](https://github.com/tauri-apps/cargo-mobile2/../../lucasfernog)) Allow skipping code signing on `Apple::Target` `build` and `archive` methods, + which fixes an issue in CI where automatic signing only works on the first execution, + and following runs errors with `Revoke certificate: Your account already has a signing certificate for this machine but it is not present in your keychain`. + ## \[0.16.0] - [`e289dd9`](https://github.com/tauri-apps/cargo-mobile2/commit/e289dd95a435ad069e8252519a2e1232f9376d98) ([#381](https://github.com/tauri-apps/cargo-mobile2/pull/381) by [@lucasfernog](https://github.com/tauri-apps/cargo-mobile2/../../lucasfernog)) Added a `BuildConfig` argument to the `Target::build` iOS method to allow provisioning updates. diff --git a/Cargo.lock b/Cargo.lock index 9018bbd3..0f18c5ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -179,7 +179,7 @@ checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" [[package]] name = "cargo-mobile2" -version = "0.16.0" +version = "0.17.0" dependencies = [ "colored", "core-foundation 0.10.0", diff --git a/Cargo.toml b/Cargo.toml index b13b27b8..56721749 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-mobile2" -version = "0.16.0" +version = "0.17.0" authors = [ "Tauri Programme within The Commons Conservancy", "Brainium Studios LLC",