Skip to content

Commit 0d29930

Browse files
authored
Merge pull request #158 from rust-mobile/release-0.6.0
Release 0.6.0
2 parents 7bd3ba6 + 0a87a84 commit 0d29930

File tree

2 files changed

+26
-5
lines changed

2 files changed

+26
-5
lines changed

android-activity/CHANGELOG.md

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.6.0] - 2024-04-26
10+
11+
### Changed
812
- rust-version bumped to 1.69.0 ([#156](https://github.com/rust-mobile/android-activity/pull/156))
13+
- Upgrade to `ndk-sys 0.6.0` and `ndk 0.9.0` ([#155](https://github.com/rust-mobile/android-activity/pull/155))
914

15+
### Fixed
16+
- Check for null `saved_state_in` pointer from `NativeActivity`
1017

1118
## [0.5.2] - 2024-01-30
1219

@@ -177,21 +184,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
177184
### Removed
178185
- Most of the examples were moved to <https://github.com/rust-mobile/rust-android-examples> ([#50](https://github.com/rust-mobile/android-activity/pull/50))
179186

180-
## [0.4] - 2022-11-10
187+
## [0.4.0] - 2022-11-10
181188
### Changed
182189
- *Breaking*: `input_events` callback now return whether an event was handled or not to allow for fallback handling ([#31](https://github.com/rust-mobile/android-activity/issues/31))
183190
- The native-activity backend is now implemented in Rust only, without building on `android_native_app_glue.c` ([#35](https://github.com/rust-mobile/android-activity/pull/35))
184191
### Added
185192
- Added `Pointer::tool_type()` API to `GameActivity` backend for compatibility with `ndk` events API ([#38](https://github.com/rust-mobile/android-activity/pull/38))
186193

187-
## [0.3] - 2022-09-15
194+
## [0.3.0] - 2022-09-15
188195
### Added
189196
- `show/hide_sot_input` API for being able to show/hide a soft keyboard (other IME still pending)
190197
- `set_window_flags()` API for setting WindowManager params
191198
### Changed
192199
- *Breaking*: Created extensible, `#[non_exhaustive]` `InputEvent` wrapper enum instead of exposing `ndk` type directly
193200

194-
## [0.2] - 2022-08-25
201+
## [0.2.0] - 2022-08-25
195202
### Added
196203
- Emit an `InputAvailable` event for new input with `NativeActivity` and `GameActivity`
197204
enabling gui apps that don't render continuously
@@ -208,6 +215,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
208215
### Changed
209216
- Documentation fixes
210217

211-
## [0.1] - 2022-07-04
218+
## [0.1.0] - 2022-07-04
212219
### Added
213220
- Initial release
221+
222+
[unreleased]: https://github.com/rust-mobile/android-activity/compare/v0.6.0...HEAD
223+
[0.6.0]: https://github.com/rust-mobile/android-activity/compare/v0.5.2...v0.6.0
224+
[0.5.2]: https://github.com/rust-mobile/android-activity/compare/v0.5.1...v0.5.2
225+
[0.5.1]: https://github.com/rust-mobile/android-activity/compare/v0.5.0...v0.5.1
226+
[0.5.0]: https://github.com/rust-mobile/android-activity/compare/v0.4.3...v0.5.0
227+
[0.4.3]: https://github.com/rust-mobile/android-activity/compare/v0.4.2...v0.4.3
228+
[0.4.2]: https://github.com/rust-mobile/android-activity/compare/v0.4.1...v0.4.2
229+
[0.4.1]: https://github.com/rust-mobile/android-activity/compare/v0.4.0...v0.4.1
230+
[0.4.0]: https://github.com/rust-mobile/android-activity/compare/v0.3.0...v0.4.0
231+
[0.3.0]: https://github.com/rust-mobile/android-activity/compare/v0.2.0...v0.3.0
232+
[0.2.0]: https://github.com/rust-mobile/android-activity/compare/v0.1.1...v0.2.0
233+
[0.1.1]: https://github.com/rust-mobile/android-activity/compare/v0.1.0...v0.1.1
234+
[0.1.0]: https://github.com/rust-mobile/android-activity/releases/tag/v0.1.0

android-activity/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "android-activity"
3-
version = "0.5.2"
3+
version = "0.6.0"
44
edition = "2021"
55
keywords = ["android", "ndk"]
66
readme = "../README.md"

0 commit comments

Comments
 (0)