diff --git a/.changes/allow-vision-os.md b/.changes/allow-vision-os.md deleted file mode 100644 index ed59fe7c..00000000 --- a/.changes/allow-vision-os.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-mobile": patch ---- - -Allow selecting "Apple Vision Pro" as an emulator. diff --git a/.changes/android-template.md b/.changes/android-template.md deleted file mode 100644 index 8f649619..00000000 --- a/.changes/android-template.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-mobile": "patch" ---- - -Fix Android template generation. diff --git a/.changes/fix-ios-logs.md b/.changes/fix-ios-logs.md deleted file mode 100644 index fc56f0cf..00000000 --- a/.changes/fix-ios-logs.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-mobile": patch ---- - -Fixes `Device::run` not showing logs. diff --git a/.changes/skip-targets-install.md b/.changes/skip-targets-install.md deleted file mode 100644 index 86ee93b8..00000000 --- a/.changes/skip-targets-install.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-mobile": "patch" ---- - -Add `--skip-targets-install` option for `cargo mobile new` and `cargo mobile init` diff --git a/CHANGELOG.md b/CHANGELOG.md index f67211de..ed80671b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[0.5.4] + +- [`21b1386`](https://github.com/tauri-apps/tauri-mobile/commit/21b13866be1a96b01bc52d63d0b005248a014862)([#208](https://github.com/tauri-apps/tauri-mobile/pull/208)) Allow selecting "Apple Vision Pro" as an emulator. +- [`02dd3e3`](https://github.com/tauri-apps/tauri-mobile/commit/02dd3e3c37bc1d35a4e710ffd4a950815308cfd3)([#214](https://github.com/tauri-apps/tauri-mobile/pull/214)) Fix Android template generation. +- [`a82bf57`](https://github.com/tauri-apps/tauri-mobile/commit/a82bf571ec69eadd07424402def6bd8565076884)([#202](https://github.com/tauri-apps/tauri-mobile/pull/202)) Fixes `Device::run` not showing logs. +- [`a26988a`](https://github.com/tauri-apps/tauri-mobile/commit/a26988af02c13a2cce2d34b95809a8b8a4671164)([#206](https://github.com/tauri-apps/tauri-mobile/pull/206)) Add `--skip-targets-install` option for `cargo mobile new` and `cargo mobile init` + ## \[0.5.3] - [`9719aae`](https://github.com/tauri-apps/tauri-mobile/commit/9719aaeaae14560109f0ee81956f1f9083c1cc3a)([#185](https://github.com/tauri-apps/tauri-mobile/pull/185)) Fix template failing to be rendered due to missing variables on strict mode. diff --git a/Cargo.lock b/Cargo.lock index 4a2d6d6f..152d321b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1249,7 +1249,7 @@ dependencies = [ [[package]] name = "tauri-mobile" -version = "0.5.3" +version = "0.5.4" dependencies = [ "cocoa", "colored", diff --git a/Cargo.toml b/Cargo.toml index 34dc902f..156b5bbd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,31 +1,31 @@ [package] name = "tauri-mobile" -version = "0.5.3" +version = "0.5.4" authors = [ "Tauri Programme within The Commons Conservancy", "Brainium Studios LLC", - "Francesca Lovebloom ", + "Francesca Lovebloom " ] edition = "2021" description = "Rust on mobile made easy!" documentation = "https://docs.rs/tauri-mobile" repository = "https://github.com/tauri-apps/tauri-mobile" readme = "README.md" -keywords = ["cargo", "mobile", "ios", "android", "tauri"] -categories = ["development-tools::cargo-plugins"] +keywords = [ "cargo", "mobile", "ios", "android", "tauri" ] +categories = [ "development-tools::cargo-plugins" ] license = "Apache-2.0 OR MIT" [[bin]] name = "cargo-mobile" -required-features = ["cli"] +required-features = [ "cli" ] [[bin]] name = "cargo-apple" -required-features = ["cli"] +required-features = [ "cli" ] [[bin]] name = "cargo-android" -required-features = ["cli"] +required-features = [ "cli" ] [features] cli = [ @@ -37,13 +37,13 @@ cli = [ "serde_json", "thiserror", "structopt", - "env_logger", + "env_logger" ] -brainium = [] -rustls = ["ureq/tls"] -native-tls = ["ureq/native-tls"] -openssl-vendored = ["openssl/vendored"] -default = ["cli", "ureq/native-tls"] +brainium = [ ] +rustls = [ "ureq/tls" ] +native-tls = [ "ureq/native-tls" ] +openssl-vendored = [ "openssl/vendored" ] +default = [ "cli", "ureq/native-tls" ] [dependencies] handlebars = "4.3" @@ -61,11 +61,11 @@ java-properties = { version = "1.2" } log = "0.4" once-cell-regex = "0.2" path_abs = "0.5" -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0", features = [ "derive" ] } structopt = { version = "0.3", optional = true } -textwrap = { version = "0.11", features = ["term_size"] } +textwrap = { version = "0.11", features = [ "term_size" ] } thiserror = "1.0" -toml = { version = "0.5", features = ["preserve_order"] } +toml = { version = "0.5", features = [ "preserve_order" ] } os_pipe = "1" duct = "0.13" which = "4.4" @@ -82,7 +82,7 @@ objc = "0.2" objc_id = "0.1" [target."cfg(not(target_os = \"macos\"))".dependencies] -ureq = { version = "2.4", default-features = false, features = ["gzip"] } +ureq = { version = "2.4", default-features = false, features = [ "gzip" ] } [target."cfg(target_os = \"linux\")".dependencies] freedesktop_entry_parser = "1.1" @@ -104,7 +104,7 @@ features = [ "Win32_System_Registry", "Win32_System_SystemInformation", "Win32_System_SystemServices", - "Win32_UI_Shell", + "Win32_UI_Shell" ] [target."cfg(windows)".build-dependencies]