Skip to content

Commit 6e097ae

Browse files
committed
fix compilation
1 parent 884cb87 commit 6e097ae

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10-
## [0.4.1] - 2024-12-01
10+
## [0.4.2] - 2024-12-01
1111

1212
### Fixed
1313
* fixed broken observer api because we listened to the wrong event type

bevy_ios_iap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_ios_iap"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
edition = "2021"
55
build = "build.rs"
66
readme = "../README.md"

bevy_ios_iap/src/request.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ pub fn plugin(app: &mut App) {
139139
PreUpdate,
140140
(
141141
cleanup_finished_requests,
142-
process_events.run_if(on_event::<IosIapResponse>),
142+
process_events.run_if(on_event::<IosIapResponse>()),
143143
)
144144
.chain()
145145
.in_set(BevyIosIapSet),

0 commit comments

Comments
 (0)