Skip to content

Commit f414cab

Browse files
committed
Release ndk-sys-0.5.0, ndk-0.8.0
1 parent 8a60523 commit f414cab

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v2
2121
- uses: dtolnay/rust-toolchain@stable
2222
with:
23-
target: aarch64-linux-android
23+
target: ${{ matrix.crate.target }}
2424
- name: Publish ${{ matrix.crate.name }}
2525
continue-on-error: true
2626
run: cargo publish --manifest-path ${{ matrix.crate.name }}/Cargo.toml --target ${{ matrix.crate.target }} --token ${{ secrets.cratesio_token }}

ndk-sys/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Unreleased
22

3-
# 0.5.0-beta.0 (2023-08-15)
3+
# 0.5.0 (2023-10-15)
44

55
- **Breaking:** Regenerate against NDK `25.2.9519653` with `rust-bindgen 0.66.0`. (#324, #370)
66
- Add `font`, `font_matcher`, `system_fonts` bindings. (#397)

ndk-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ndk-sys"
3-
version = "0.5.0-beta.0+25.2.9519653"
3+
version = "0.5.0+25.2.9519653"
44
authors = ["The Rust Windowing contributors"]
55
edition = "2021"
66
description = "FFI bindings for the Android NDK"

ndk/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Unreleased
22

3-
# 0.8.0-beta.0 (2023-08-15)
3+
# 0.8.0 (2023-10-15)
44

55
- event: Add `tool_type` getter for `Pointer`. (#323)
66
- input_queue: Allow any non-zero return code from `pre_dispatch()` again, as per documentation. (#325)
@@ -23,7 +23,7 @@
2323
- Add panic guards to callbacks. (#412)
2424
- looper: Add `remove_fd()` to unregister events/callbacks for a file descriptor. (#416)
2525
- **Breaking:** Use `BorrowedFd` and `OwnedFd` to clarify possible ownership transitions. (#417)
26-
- **Breaking:** Upgrade to [`ndk-sys 0.5.0`](../ndk-sys/CHANGELOG.md#050-beta0-2023-08-15). (#420)
26+
- **Breaking:** Upgrade to [`ndk-sys 0.5.0`](../ndk-sys/CHANGELOG.md#050-2023-10-15). (#420)
2727
- Add bindings for `sync.h`. (#423)
2828
- **Breaking:** bitmap: Provide detailed implementation for `AndroidBitmapInfoFlags`. (#424)
2929
- native_window: Add `set_buffers_transform()`, `try_allocate_buffers()` and `set_frame_rate*()`. (#425)

ndk/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ndk"
3-
version = "0.8.0-beta.0"
3+
version = "0.8.0"
44
authors = ["The Rust Mobile contributors"]
55
edition = "2021"
66
description = "Safe Rust bindings to the Android NDK"
@@ -50,7 +50,7 @@ optional = true
5050
[dependencies.ffi]
5151
package = "ndk-sys"
5252
path = "../ndk-sys"
53-
version = "0.5.0-beta.0"
53+
version = "0.5.0"
5454

5555
[dev-dependencies]
5656
# Only for use in documentation and doc-tests

0 commit comments

Comments
 (0)