From e8a5fe561c736b8ff479a99106e17f9ef50ca195 Mon Sep 17 00:00:00 2001 From: lucasfernog Date: Wed, 20 Mar 2024 21:26:27 +0000 Subject: [PATCH] publish new versions --- .changes/fix-ios-check-package-exist.md | 5 ----- .changes/remove-openssl.md | 5 ----- .changes/window-0-54.md | 5 ----- CHANGELOG.md | 6 ++++++ Cargo.lock | 19 ++++++++++++++----- Cargo.toml | 2 +- 6 files changed, 21 insertions(+), 21 deletions(-) delete mode 100644 .changes/fix-ios-check-package-exist.md delete mode 100644 .changes/remove-openssl.md delete mode 100644 .changes/window-0-54.md diff --git a/.changes/fix-ios-check-package-exist.md b/.changes/fix-ios-check-package-exist.md deleted file mode 100644 index 2f485aa6..00000000 --- a/.changes/fix-ios-check-package-exist.md +++ /dev/null @@ -1,5 +0,0 @@ ---- - "cargo-mobile2": patch ---- - -Fix a bug in checking for package presence when initiating an ios project diff --git a/.changes/remove-openssl.md b/.changes/remove-openssl.md deleted file mode 100644 index c3c01015..00000000 --- a/.changes/remove-openssl.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"cargo-mobile2": minor ---- - -Remove `openssl` and use `x509-certificate` instead. diff --git a/.changes/window-0-54.md b/.changes/window-0-54.md deleted file mode 100644 index 61ebf828..00000000 --- a/.changes/window-0-54.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"cargo-mobile2": "patch" ---- - -Update `windows` crate to `0.54` diff --git a/CHANGELOG.md b/CHANGELOG.md index f341d230..5c9f03bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[0.11.0] + +- [`b370b38`](https://github.com/tauri-apps/cargo-mobile2/commit/b370b38acc8975d3f84c012354732a28edbb9e34)([#285](https://github.com/tauri-apps/cargo-mobile2/pull/285)) Fix a bug in checking for package presence when initiating an ios project +- [`0c91351`](https://github.com/tauri-apps/cargo-mobile2/commit/0c91351ef6452a8f9bad58469bca42704d8a9a1e)([#292](https://github.com/tauri-apps/cargo-mobile2/pull/292)) Remove `openssl` and use `x509-certificate` instead. +- [`1567a7a`](https://github.com/tauri-apps/cargo-mobile2/commit/1567a7a16772a2fe904e95409b74c02846de4b33)([#288](https://github.com/tauri-apps/cargo-mobile2/pull/288)) Update `windows` crate to `0.54` + ## \[0.10.4] - [`7a1066c`](https://github.com/tauri-apps/cargo-mobile2/commit/7a1066cd93d0e4cf158ccfa6a41652f2934758da)([#283](https://github.com/tauri-apps/cargo-mobile2/pull/283)) Use `adb install -r` to try replacing the android application while installing it on the device. This elimnates the need to uninstall the application from a previous run when using a real device. diff --git a/Cargo.lock b/Cargo.lock index 3058d2bd..9953cbd5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -125,7 +125,7 @@ checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" [[package]] name = "cargo-mobile2" -version = "0.10.4" +version = "0.11.0" dependencies = [ "colored", "core-foundation", @@ -184,7 +184,7 @@ dependencies = [ "android-tzdata", "iana-time-zone", "num-traits", - "windows-targets 0.52.0", + "windows-targets 0.52.4", ] [[package]] @@ -643,7 +643,7 @@ dependencies = [ "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows-core", + "windows-core 0.52.0", ] [[package]] @@ -1854,7 +1854,16 @@ version = "0.54.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49" dependencies = [ - "windows-core", + "windows-core 0.54.0", + "windows-targets 0.52.4", +] + +[[package]] +name = "windows-core" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" +dependencies = [ "windows-targets 0.52.4", ] @@ -1892,7 +1901,7 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "windows-targets 0.52.0", + "windows-targets 0.52.4", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 81cf2886..7ee78e85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-mobile2" -version = "0.10.4" +version = "0.11.0" authors = [ "Tauri Programme within The Commons Conservancy", "Brainium Studios LLC",