Release 0.4.2

This commit is contained in:
Robert Bragg
2023-06-25 23:46:32 +01:00
parent 230035526b
commit 9a713c823d
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -3,8 +3,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.4.2] - 2022-02-16
### Changed
- The `Activity.finish()` method is now called when `android_main` returns so the `Activity` will be destroyed ([#67](https://github.com/rust-mobile/android-activity/issues/67))
- The `native-activity` backend now propagates `NativeWindow` redraw/resize and `ContentRectChanged` callbacks to main loop ([#70](https://github.com/rust-mobile/android-activity/pull/70))
- The `game-activity` implementation of `pointer_index()` was fixed to not always return `0` ([#80](https://github.com/rust-mobile/android-activity/pull/84))
- Added `panic` guards around application's `android_main()` and native code that could potentially unwind across a Java FFI boundary ([#68](https://github.com/rust-mobile/android-activity/pull/68))
## [0.4.1] - 2022-02-16
### Added
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "android-activity"
version = "0.4.1"
version = "0.4.2"
edition = "2021"
keywords = ["android", "ndk"]
readme = "../README.md"