Skip to content

Commit a7114c8

Browse files
authored
Merge pull request #137 from rust-mobile/release-0.5.0
Release 0.5.0
2 parents 2a917ca + a7dc90d commit a7114c8

File tree

9 files changed

+15
-58
lines changed

9 files changed

+15
-58
lines changed

android-activity/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.5.0] - 2023-10-16
10+
### Added
11+
- Added `MotionEvent::action_button()` exposing the button associated with button press/release actions ()
12+
13+
### Changed
14+
- rust-version bumped to 0.68 ([#123](https://github.com/rust-mobile/android-activity/pull/123))
15+
- *Breaking*: updates to `ndk 0.8` and `ndk-sys 0.5` ([#128](https://github.com/rust-mobile/android-activity/pull/128))
16+
- The `Pointer` and `PointerIter` types from the `ndk` crate are no longer directly exposed in the public API ([#122](https://github.com/rust-mobile/android-activity/pull/122))
17+
- All input API enums based on Android SDK enums have been made runtime extensible via hidden `__Unknown(u32)` variants ([#131](https://github.com/rust-mobile/android-activity/pull/131))
18+
919
## [0.5.0-beta.1] - 2023-08-15
1020
### Changed
1121
- Pulled in `ndk-sys 0.5.0-beta.0` and `ndk 0.8.0-beta.0` ([#113](https://github.com/rust-mobile/android-activity/pull/113))

android-activity/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "android-activity"
3-
version = "0.5.0-beta.1"
3+
version = "0.5.0"
44
edition = "2021"
55
keywords = ["android", "ndk"]
66
readme = "../README.md"

examples/agdk-mainloop/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ edition = "2021"
99
log = "0.4"
1010
android_logger = "0.11.0"
1111
android-activity = { path="../../android-activity", features = ["game-activity"] }
12-
ndk-sys = "0.5.0-beta.0"
13-
ndk = "0.8.0-beta.0"
12+
ndk-sys = "0.5.0"
13+
ndk = "0.8.0"
1414

1515
[lib]
1616
name="main"

examples/na-mainloop/.idea/.gitignore

-3
This file was deleted.

examples/na-mainloop/.idea/compiler.xml

-6
This file was deleted.

examples/na-mainloop/.idea/gradle.xml

-19
This file was deleted.

examples/na-mainloop/.idea/misc.xml

-18
This file was deleted.

examples/na-mainloop/.idea/vcs.xml

-7
This file was deleted.

examples/na-mainloop/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ edition = "2021"
99
log = "0.4"
1010
android_logger = "0.11.0"
1111
android-activity = { path="../../android-activity", features = [ "native-activity" ] }
12-
ndk-sys = "0.5.0-beta.0"
13-
ndk = "0.8.0-beta.0"
12+
ndk-sys = "0.5.0"
13+
ndk = "0.8.0"
1414

1515
[lib]
1616
#name="na_mainloop"

0 commit comments

Comments
 (0)