From 49bbbba16c58ff63cb8a0ad0eca5a9fb7ecaec25 Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Fri, 26 Apr 2024 17:14:42 +0200 Subject: [PATCH] Release ndk-sys-0.6.0, ndk-0.9.0 (#472) --- ndk-sys/CHANGELOG.md | 2 ++ ndk-sys/Cargo.toml | 2 +- ndk/CHANGELOG.md | 3 +++ ndk/Cargo.toml | 4 ++-- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ndk-sys/CHANGELOG.md b/ndk-sys/CHANGELOG.md index eb4b2c71..4ff63c02 100644 --- a/ndk-sys/CHANGELOG.md +++ b/ndk-sys/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# 0.6.0 (2024-04-26) + - Generate against upstream NDK build `11769913`. (#471) - Add `nativewindow` feature to link against `libnativewindow`. (#465) diff --git a/ndk-sys/Cargo.toml b/ndk-sys/Cargo.toml index 01b10af2..40e63443 100644 --- a/ndk-sys/Cargo.toml +++ b/ndk-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ndk-sys" -version = "0.5.0+11769913" +version = "0.6.0+11769913" 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 1afb504f..e4dc75d9 100644 --- a/ndk/CHANGELOG.md +++ b/ndk/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# 0.9.0 (2024-04-26) + - Move `MediaFormat` from `media::media_codec` to its own `media::media_format` module. (#442) - media_format: Expose `MediaFormat::copy()` and `MediaFormat::clear()` from API level 29. (#449) - **Breaking:** media_format: Mark all `fn set_*()` and `fn str()` as taking `self` by `&mut`. (#452) @@ -27,6 +29,7 @@ - **Breaking:** audio: Merge `AudioResult` variant enum into `AudioError`. (#467) - data_space: Add missing `DataSpaceRange::Unspecified` variant. (#468) - **Breaking:** looper: Require `Send` marker when adding fd event callbacks on `ForeignLooper`. (#469) +- **Breaking:** Upgrade to [`ndk-sys 0.6.0`](../ndk-sys/CHANGELOG.md#060-2024-04-26). (#472) # 0.8.0 (2023-10-15) diff --git a/ndk/Cargo.toml b/ndk/Cargo.toml index 44789acc..553c1355 100644 --- a/ndk/Cargo.toml +++ b/ndk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ndk" -version = "0.8.0" +version = "0.9.0" authors = ["The Rust Mobile contributors"] edition = "2021" description = "Safe Rust bindings to the Android NDK" @@ -53,7 +53,7 @@ optional = true [dependencies.ffi] package = "ndk-sys" path = "../ndk-sys" -version = "0.5.0" +version = "0.6.0" [dev-dependencies] # Only for use in documentation and doc-tests