diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5f1ae668..c69b6204 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v2 - uses: dtolnay/rust-toolchain@stable with: - target: aarch64-linux-android + target: ${{ matrix.crate.target }} - name: Publish ${{ matrix.crate.name }} continue-on-error: true run: cargo publish --manifest-path ${{ matrix.crate.name }}/Cargo.toml --target ${{ matrix.crate.target }} --token ${{ secrets.cratesio_token }} diff --git a/ndk-sys/CHANGELOG.md b/ndk-sys/CHANGELOG.md index ad34ae7d..c5a82b0c 100644 --- a/ndk-sys/CHANGELOG.md +++ b/ndk-sys/CHANGELOG.md @@ -1,6 +1,6 @@ # Unreleased -# 0.5.0-beta.0 (2023-08-15) +# 0.5.0 (2023-10-15) - **Breaking:** Regenerate against NDK `25.2.9519653` with `rust-bindgen 0.66.0`. (#324, #370) - Add `font`, `font_matcher`, `system_fonts` bindings. (#397) diff --git a/ndk-sys/Cargo.toml b/ndk-sys/Cargo.toml index bbbc09b2..f3ddb849 100644 --- a/ndk-sys/Cargo.toml +++ b/ndk-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ndk-sys" -version = "0.5.0-beta.0+25.2.9519653" +version = "0.5.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 35b701b7..1292ad57 100644 --- a/ndk/CHANGELOG.md +++ b/ndk/CHANGELOG.md @@ -1,6 +1,6 @@ # Unreleased -# 0.8.0-beta.0 (2023-08-15) +# 0.8.0 (2023-10-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) @@ -23,7 +23,7 @@ - Add panic guards to callbacks. (#412) - looper: Add `remove_fd()` to unregister events/callbacks for a file descriptor. (#416) - **Breaking:** Use `BorrowedFd` and `OwnedFd` to clarify possible ownership transitions. (#417) -- **Breaking:** Upgrade to [`ndk-sys 0.5.0`](../ndk-sys/CHANGELOG.md#050-beta0-2023-08-15). (#420) +- **Breaking:** Upgrade to [`ndk-sys 0.5.0`](../ndk-sys/CHANGELOG.md#050-2023-10-15). (#420) - Add bindings for `sync.h`. (#423) - **Breaking:** bitmap: Provide detailed implementation for `AndroidBitmapInfoFlags`. (#424) - native_window: Add `set_buffers_transform()`, `try_allocate_buffers()` and `set_frame_rate*()`. (#425) diff --git a/ndk/Cargo.toml b/ndk/Cargo.toml index 2510e08f..9214506a 100644 --- a/ndk/Cargo.toml +++ b/ndk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ndk" -version = "0.8.0-beta.0" +version = "0.8.0" authors = ["The Rust Mobile contributors"] edition = "2021" description = "Safe Rust bindings to the Android NDK" @@ -50,7 +50,7 @@ optional = true [dependencies.ffi] package = "ndk-sys" path = "../ndk-sys" -version = "0.5.0-beta.0" +version = "0.5.0" [dev-dependencies] # Only for use in documentation and doc-tests