Skip to content

Commit 10f2ba3

Browse files
authored
Release ndk-context-0.1.1, ndk-glue-0.6.2 (rust-mobile#264)
And prepare the changelogs for ndk-glue-0.4.2 and ndk-glue-0.5.2, whose backports will be processed in the respective stable branches.
1 parent 3609aa1 commit 10f2ba3

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

ndk-context/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Unreleased
22

3+
# 0.1.1 (2022-04-19)
4+
35
- Add `release_android_context()` function to remove `AndroidContext` when activity is destroyed. (#263)
46

57
# 0.1.0 (2022-02-14)

ndk-context/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ndk-context"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["The Rust Windowing contributors"]
55
edition = "2021"
66
description = "Handles for accessing Android APIs"

ndk-glue/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Unreleased
22

3+
# 0.6.2 (2022-04-19)
4+
35
- Call `ndk_context::release_android_context()` function to remove `AndroidContext` when activity is destroyed. (#263)
46

57
# 0.6.1 (2022-02-14)
@@ -10,6 +12,10 @@
1012

1113
- **Breaking:** Update to `ndk-sys 0.3.0` and `ndk 0.6.0`.
1214

15+
# 0.5.2 (2022-04-19)
16+
17+
- Call `ndk_context::release_android_context()` function to remove `AndroidContext` when activity is destroyed. (#263)
18+
1319
# 0.5.1 (2022-02-15)
1420

1521
- Initialize `ndk-context` for cross-version access to the Java `VM` and Android `Context`.
@@ -19,6 +25,10 @@
1925
- Document when to lock and unlock the window/input queue when certain events are received.
2026
- **Breaking:** Update to `ndk 0.5.0` and `ndk-macros 0.3.0`.
2127

28+
# 0.4.2 (2022-04-19)
29+
30+
- Call `ndk_context::release_android_context()` function to remove `AndroidContext` when activity is destroyed. (#263)
31+
2232
# 0.4.1 (2022-02-15)
2333

2434
- Initialize `ndk-context` for cross-version access to the Java `VM` and Android `Context`.

ndk-glue/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ndk-glue"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
authors = ["The Rust Windowing contributors"]
55
edition = "2018"
66
description = "Startup code for android binaries"
@@ -13,7 +13,7 @@ repository = "https://github.com/rust-windowing/android-ndk-rs"
1313

1414
[dependencies]
1515
ndk = { path = "../ndk", version = "0.6.0" }
16-
ndk-context = { path = "../ndk-context", version = "0.1.0" }
16+
ndk-context = { path = "../ndk-context", version = "0.1.1" }
1717
ndk-macro = { path = "../ndk-macro", version = "0.3.0" }
1818
ndk-sys = { path = "../ndk-sys", version = "0.3.0" }
1919
lazy_static = "1.4.0"

0 commit comments

Comments
 (0)