Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish New Versions #203

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changes/allow-vision-os.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/android-template.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/fix-ios-logs.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/skip-targets-install.md

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"Francesca Lovebloom <[email protected]>"
]
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 = [
Expand All @@ -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"
Expand All @@ -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"
Expand All @@ -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"
Expand All @@ -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]
Expand Down
Loading