Skip to content

Commit

Permalink
Release ndk-build-0.10.0, cargo-apk-0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MarijnS95 committed Nov 30, 2023
1 parent e177a5a commit b580c03
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
4 changes: 0 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,3 @@ members = [
"examples",
"cargo-apk",
]

[patch.crates-io]
# Unreleased, including https://github.com/rust-mobile/cargo-subcommand/pull/17
cargo-subcommand = { git = "https://github.com/rust-mobile/cargo-subcommand.git", rev = "281b281" }
7 changes: 7 additions & 0 deletions cargo-apk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Unreleased

# 0.10.0 (2023-11-30)

- Bump MSRV to 1.70 to reflect dependency updates.
- Bump `ndk-build` to [`0.10.0`](https://github.com/rust-mobile/cargo-apk/releases/tag/ndk-build-0.10.0) with various fixes:
- Improved log filtering based on UID instead of PID;
- Support for building APKs from an Android host;
- More manifest attributes are now supported on the `Application` and `Activity` elements.
- Improved artifacts based on https://github.com/rust-mobile/cargo-subcommand/pull/17 to support renames of `[lib]`, `[[bin]]` and `[[example]]`. ([#26](https://github.com/rust-mobile/cargo-apk/pull/26))

# 0.9.7 (2022-12-12)

Expand Down
6 changes: 3 additions & 3 deletions cargo-apk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-apk"
version = "0.9.7"
version = "0.10.0"
authors = ["The Rust Windowing contributors"]
edition = "2018"
description = "Helps cargo build APKs"
Expand All @@ -13,12 +13,12 @@ rust-version = "1.70"

[dependencies]
anyhow = "1.0.57"
cargo-subcommand = "0.11"
cargo-subcommand = "0.12"
clap = { version = "4", features = ["derive"] }
dunce = "1"
env_logger = "0.10"
log = "0.4"
ndk-build = { path = "../ndk-build", version = "0.9.0" }
ndk-build = { path = "../ndk-build", version = "0.10.0" }
serde = "1"
thiserror = "1"
toml = "0.5"
2 changes: 2 additions & 0 deletions ndk-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

# 0.10.0 (2023-11-30)

- Add `android:extractNativeLibs`, `android:usesCleartextTraffic` attributes to the manifest's `Application` element, and `android:alwaysRetainTaskState` to the `Activity` element. ([#15](https://github.com/rust-mobile/cargo-apk/pull/15))
- Enable building from `android` host. ([#29](https://github.com/rust-mobile/cargo-apk/pull/29))
- Use app `uid` instead of `pid` to limit `logcat` output to the current app. ([#33](https://github.com/rust-mobile/cargo-apk/pull/33))
Expand Down
2 changes: 1 addition & 1 deletion ndk-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ndk-build"
version = "0.9.0"
version = "0.10.0"
authors = ["The Rust Windowing contributors"]
edition = "2018"
description = "Utilities for building Android binaries"
Expand Down

0 comments on commit b580c03

Please sign in to comment.