File tree Expand file tree Collapse file tree 6 files changed +26
-17
lines changed
Expand file tree Collapse file tree 6 files changed +26
-17
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## Unreleased
99
10+ ### Changed
11+ * upgrade to bevy ` 0.18 `
12+
1013## [ 0.8.0] - 2025-10-18
1114
1215### Fixed
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ let package = Package(
1818 . binaryTarget(
1919 name: " RustXcframework " ,
2020 // for local development:
21- // path: "RustXcframework.xcframework"),
22- url:
23- " https://github.com/rustunit/bevy_ios_iap/releases/download/rs-0.8.0/RustXcframework.xcframework.zip " ,
24- checksum: " ab336f0d544e3a46a61b3c4b1c40de47c7dd9f3c94256b613b7acabd04f76883 " ) ,
21+ path: " RustXcframework.xcframework " ) ,
22+ // url:
23+ // "https://github.com/rustunit/bevy_ios_iap/releases/download/rs-0.8.0/RustXcframework.xcframework.zip",
24+ // checksum: "ab336f0d544e3a46a61b3c4b1c40de47c7dd9f3c94256b613b7acabd04f76883"),
2525 . target(
2626 name: " bevy_ios_iap " ,
2727 dependencies: [ " RustXcframework " ] ) ,
Original file line number Diff line number Diff line change 6565
6666``` toml
6767# always pin to the same exact version you also of the Swift package
68- bevy_ios_iap = { version = " =0.8 " }
68+ bevy_ios_iap = { version = " =0.9 " }
6969```
7070
7171### 3. Setup Plugin
@@ -158,7 +158,8 @@ fn process_iap_events(
158158
159159| bevy| crate|
160160| ---| ---|
161- | 0.17| 0.8,main|
161+ | 0.18| 0.9,main|
162+ | 0.17| 0.8|
162163| 0.16| 0.6,0.7|
163164| 0.15| 0.5|
164165| 0.14| 0.3,0.4|
Original file line number Diff line number Diff line change 11[package ]
22name = " bevy_ios_iap"
3- version = " 0.8 .0"
3+ version = " 0.9 .0"
44edition = " 2024"
55build = " build.rs"
66readme = " ../README.md"
@@ -15,11 +15,11 @@ description = "Bevy Plugin and Swift Package to provide access to iOS native Sto
1515crate-type = [" staticlib" , " rlib" ]
1616
1717[dependencies ]
18- bevy_app = { version = " 0.17 " , default-features = false }
19- bevy_ecs = { version = " 0.17 " , default-features = false }
20- bevy_ecs_macros = { version = " 0.17 " , default-features = false }
21- bevy_log = { version = " 0.17 " , default-features = false }
22- bevy_channel_message = " 0.1.1 "
18+ bevy_app = { version = " 0.18 " , default-features = false }
19+ bevy_ecs = { version = " 0.18 " , default-features = false }
20+ bevy_ecs_macros = { version = " 0.18 " , default-features = false }
21+ bevy_log = { version = " 0.18 " , default-features = false }
22+ bevy_channel_message = " 0.2 "
2323swift-bridge = " 0.1"
2424
2525[build-dependencies ]
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## Unreleased
99
10+ ## [ 0.3] - 2025-01-17
11+
12+ ### Changed
13+ * bevy 0.18 upgrade
14+
1015## [ 0.1.1] - 2024-01-10
1116
1217### Changed
Original file line number Diff line number Diff line change 11[package ]
22name = " bevy_ios_iap_egui"
3- version = " 0.2 .0"
3+ version = " 0.3 .0"
44edition = " 2021"
55
66[dependencies ]
7- bevy_ios_iap = " 0.8 "
8- bevy = { version = " 0.17 " , default-features = false }
9- bevy_egui = { version = " 0.37 " , default-features = false }
10- egui_extras = { version = " 0.32 " }
7+ bevy_ios_iap = { path = " ../bevy_ios_iap " }
8+ bevy = { version = " 0.18 " , default-features = false }
9+ bevy_egui = { version = " 0.39 " , default-features = false }
10+ egui_extras = { version = " 0.33 " }
You can’t perform that action at this time.
0 commit comments