Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
extrawurst committed Dec 1, 2024
1 parent 884cb87 commit 6e097ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion bevy_ios_iap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion bevy_ios_iap/src/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ pub fn plugin(app: &mut App) {
PreUpdate,
(
cleanup_finished_requests,
process_events.run_if(on_event::<IosIapResponse>),
process_events.run_if(on_event::<IosIapResponse>()),
)
.chain()
.in_set(BevyIosIapSet),
Expand Down

0 comments on commit 6e097ae

Please sign in to comment.