Skip to content

Commit

Permalink
Release ndk-sys-0.2.2, ndk-0.5.0, ndk-macro-0.3.0, ndk-glue-0.5.0 (#191)
Browse files Browse the repository at this point in the history
Bump versions for all crates providing Android-specific code.
  • Loading branch information
MarijnS95 authored Nov 22, 2021
1 parent da1139e commit 7c4da9e
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 9 deletions.
3 changes: 3 additions & 0 deletions ndk-glue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Unreleased

# 0.5.0 (2021-11-16)

- Document when to lock and unlock the window/input queue when certain events are received.
- **Breaking:** Update to `ndk 0.5.0` and `ndk-macros 0.3.0`.

# 0.4.0 (2021-08-02)

Expand Down
8 changes: 4 additions & 4 deletions ndk-glue/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ndk-glue"
version = "0.4.0"
version = "0.5.0"
authors = ["The Rust Windowing contributors"]
edition = "2018"
description = "Startup code for android binaries"
Expand All @@ -12,9 +12,9 @@ homepage = "https://github.com/rust-windowing/android-ndk-rs"
repository = "https://github.com/rust-windowing/android-ndk-rs"

[dependencies]
ndk = { path = "../ndk", version = "0.4.0" }
ndk-sys = { path = "../ndk-sys", version = "0.2.1" }
ndk-macro = { path = "../ndk-macro", version = "0.2.0" }
ndk = { path = "../ndk", version = "0.5.0" }
ndk-sys = { path = "../ndk-sys", version = "0.2.2" }
ndk-macro = { path = "../ndk-macro", version = "0.3.0" }
lazy_static = "1.4.0"
libc = "0.2.84"
log = "0.4.14"
Expand Down
4 changes: 3 additions & 1 deletion ndk-macro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Unreleased

- Removed `android_logger` and `log` crate path overrides from macro input attributes in favour of using the reexports from `ndk-glue`.
# 0.3.0 (2021-11-16)

- **Breaking:** Removed `android_logger` and `log` crate path overrides from macro input attributes in favour of using the reexports from `ndk-glue`.
Applications no longer have to provide these crates in scope of the `ndk_glue::main` macro when logging is enabled.

# 0.2.0 (2020-09-15)
Expand Down
2 changes: 1 addition & 1 deletion ndk-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ndk-macro"
version = "0.2.0"
version = "0.3.0"
authors = ["The Rust Windowing contributors"]
edition = "2018"
description = "Helper macros for android ndk"
Expand Down
2 changes: 2 additions & 0 deletions ndk-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

# 0.2.2 (2021-11-16)

- Regenerate against NDK r23 (#178)

# 0.2.1 (2020-10-15)
Expand Down
2 changes: 1 addition & 1 deletion ndk-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ndk-sys"
version = "0.2.1"
version = "0.2.2"
authors = ["The Rust Windowing contributors"]
edition = "2018"
description = "FFI bindings for the Android NDK"
Expand Down
2 changes: 2 additions & 0 deletions ndk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

# 0.5.0 (2021-11-16)

- **Breaking:** Replace `add_fd_with_callback` `ident` with constant value `ALOOPER_POLL_CALLBACK`,
as per https://developer.android.com/ndk/reference/group/looper#alooper_addfd.
- **Breaking:** Accept unboxed closure in `add_fd_with_callback`.
Expand Down
4 changes: 2 additions & 2 deletions ndk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ndk"
version = "0.4.0"
version = "0.5.0"
authors = ["The Rust Windowing contributors"]
edition = "2018"
description = "Safe Rust bindings to the Android NDK"
Expand Down Expand Up @@ -48,7 +48,7 @@ optional = true
[dependencies.ffi]
package = "ndk-sys"
path = "../ndk-sys"
version = "0.2.1"
version = "0.2.2"

[package.metadata.docs.rs]
features = ["jni", "jni-glue", "all"]
Expand Down

0 comments on commit 7c4da9e

Please sign in to comment.