From 6e097ae0276c74cdce18a3b876e03cb391ed91fc Mon Sep 17 00:00:00 2001 From: extrawurst Date: Sun, 1 Dec 2024 20:14:14 +0100 Subject: [PATCH] fix compilation --- CHANGELOG.md | 2 +- bevy_ios_iap/Cargo.toml | 2 +- bevy_ios_iap/src/request.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fb0daf..1bc49bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -## [0.4.1] - 2024-12-01 +## [0.4.2] - 2024-12-01 ### Fixed * fixed broken observer api because we listened to the wrong event type diff --git a/bevy_ios_iap/Cargo.toml b/bevy_ios_iap/Cargo.toml index 89c0b0b..8302439 100644 --- a/bevy_ios_iap/Cargo.toml +++ b/bevy_ios_iap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ios_iap" -version = "0.4.1" +version = "0.4.2" edition = "2021" build = "build.rs" readme = "../README.md" diff --git a/bevy_ios_iap/src/request.rs b/bevy_ios_iap/src/request.rs index 839bea4..6059ddb 100644 --- a/bevy_ios_iap/src/request.rs +++ b/bevy_ios_iap/src/request.rs @@ -139,7 +139,7 @@ pub fn plugin(app: &mut App) { PreUpdate, ( cleanup_finished_requests, - process_events.run_if(on_event::), + process_events.run_if(on_event::()), ) .chain() .in_set(BevyIosIapSet),