Skip to content

Commit

Permalink
Publish New Versions (#135)
Browse files Browse the repository at this point in the history
Co-authored-by: lucasfernog <[email protected]>
  • Loading branch information
github-actions[bot] and lucasfernog authored Apr 22, 2023
1 parent 6ee75fb commit 2382a38
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 35 deletions.
5 changes: 0 additions & 5 deletions .changes/adb-duct.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/bossy-to-duct.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/run-return-val.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/wry-0.28.md

This file was deleted.

11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## \[0.4.0]

- Use `duct` to run the ADB commands.
- [8caa30c](https://github.com/tauri-apps/tauri-mobile/commit/8caa30c8fc3369b94f5da18c246bf945e32c8a4f) fix(android): use duct to run the ADB commands ([#134](https://github.com/tauri-apps/tauri-mobile/pull/134)) on 2023-04-15
- **Breaking** Replace `bossy` with `duct` across the crate. bossy has two ways to create commands, impure and pure. The pure version won't inherit env variables. This causes child processes won't get the env varialbes and results in issues like openssl cross compilation.
- [6ee75fb](https://github.com/tauri-apps/tauri-mobile/commit/6ee75fbb10a17624e3a3ec64ab04dad2928ef9ed) refactor: replace bossy with duct ([#143](https://github.com/tauri-apps/tauri-mobile/pull/143)) on 2023-04-22
- Return `duct::Handle` in `apple::Device::run` to keep compatibility with Android.
- [84311da](https://github.com/tauri-apps/tauri-mobile/commit/84311da4aec6f30c9158f60caea285e61ffef32f) refactor(apple): use duct for Device::run commands ([#137](https://github.com/tauri-apps/tauri-mobile/pull/137)) on 2023-04-15
- Update `wry` template to `[email protected]`
- [0b9580f](https://github.com/tauri-apps/tauri-mobile/commit/0b9580ff702d57ba5d3095de95ce77e4539b7874) chore: update wry template ([#141](https://github.com/tauri-apps/tauri-mobile/pull/141)) on 2023-04-17

## \[0.3.0]

- This change manually instructs Java and Kotlin to use/generate code for the same JVM target.
Expand Down
30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
[package]
name = "tauri-mobile"
version = "0.3.0"
version = "0.4.0"
authors = [
"Tauri Programme within The Commons Conservancy",
"Brainium Studios LLC",
"Francesca Lovebloom <[email protected]>",
"Francesca Lovebloom <[email protected]>"
]
edition = "2018"
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,11 +37,11 @@ cli = [
"serde_json",
"thiserror",
"structopt",
"env_logger",
"env_logger"
]
brainium = []
openssl-vendored = ["openssl/vendored"]
default = ["cli"]
brainium = [ ]
openssl-vendored = [ "openssl/vendored" ]
default = [ "cli" ]

[dependencies]
handlebars = "3.3.0"
Expand All @@ -59,11 +59,11 @@ java-properties = { version = "1.2.0" }
log = "0.4.8"
once-cell-regex = "0.2.1"
path_abs = "0.5.0"
serde = { version = "1.0.105", features = ["derive"] }
serde = { version = "1.0.105", features = [ "derive" ] }
structopt = { version = "0.3.12", optional = true }
textwrap = { version = "0.11.0", features = ["term_size"] }
textwrap = { version = "0.11.0", features = [ "term_size" ] }
thiserror = "1.0.20"
toml = { version = "0.5.6", features = ["preserve_order"] }
toml = { version = "0.5.6", features = [ "preserve_order" ] }
os_pipe = "1"
duct = "0.13"
which = "4.4.0"
Expand Down Expand Up @@ -102,7 +102,7 @@ features = [
"Win32_System_Registry",
"Win32_System_SystemInformation",
"Win32_System_SystemServices",
"Win32_UI_Shell",
"Win32_UI_Shell"
]

[target."cfg(windows)".build-dependencies]
Expand Down

0 comments on commit 2382a38

Please sign in to comment.