diff --git a/ndk-sys/CHANGELOG.md b/ndk-sys/CHANGELOG.md index 32619234..799b65ac 100644 --- a/ndk-sys/CHANGELOG.md +++ b/ndk-sys/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# 0.5.0-beta.0 (2023-08-15) + - **Breaking:** Regenerate against NDK `25.2.9519653` with `rust-bindgen 0.66.0`. (#324, #370) # 0.4.1 (2022-11-23) diff --git a/ndk-sys/Cargo.toml b/ndk-sys/Cargo.toml index e6a7c50f..3e3f3e40 100644 --- a/ndk-sys/Cargo.toml +++ b/ndk-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ndk-sys" -version = "0.4.1+23.1.7779620" # Current source contains 25.2.9519653 +version = "0.5.0-beta.0+25.2.9519653" authors = ["The Rust Windowing contributors"] edition = "2021" description = "FFI bindings for the Android NDK" diff --git a/ndk/CHANGELOG.md b/ndk/CHANGELOG.md index 63631821..3a41306d 100644 --- a/ndk/CHANGELOG.md +++ b/ndk/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# 0.8.0-beta.0 (2023-08-15) + - event: Add `tool_type` getter for `Pointer`. (#323) - input_queue: Allow any non-zero return code from `pre_dispatch()` again, as per documentation. (#325) - asset: Use entire asset length when mapping buffer. (#387) @@ -18,6 +20,7 @@ - **Breaking:** media_codec: Add support for asynchronous notification callbacks. (#410) - Add panic guards to callbacks. (#412) - looper: Add `remove_fd()` to unregister events/callbacks for a file descriptor. (#416) +- **Breaking:** Upgrade to [`ndk-sys 0.5.0`](../ndk-sys/CHANGELOG.md#050-beta0-2023-08-15). (#420) # 0.7.0 (2022-07-24) diff --git a/ndk/Cargo.toml b/ndk/Cargo.toml index fc770e64..98919afb 100644 --- a/ndk/Cargo.toml +++ b/ndk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ndk" -version = "0.7.0" +version = "0.8.0-beta.0" authors = ["The Rust Windowing contributors"] edition = "2021" description = "Safe Rust bindings to the Android NDK" @@ -45,7 +45,7 @@ optional = true [dependencies.ffi] package = "ndk-sys" path = "../ndk-sys" -version = "0.4.0" +version = "0.5.0-beta.0" [package.metadata.docs.rs] features = ["jni", "all"]