Skip to content

Commit abb25da

Browse files
committed
bevy 0.18 update
1 parent a760fb1 commit abb25da

File tree

6 files changed

+26
-17
lines changed

6 files changed

+26
-17
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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"]),

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ or
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|

bevy_ios_iap/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_ios_iap"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2024"
55
build = "build.rs"
66
readme = "../README.md"
@@ -15,11 +15,11 @@ description = "Bevy Plugin and Swift Package to provide access to iOS native Sto
1515
crate-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"
2323
swift-bridge = "0.1"
2424

2525
[build-dependencies]

bevy_ios_iap_egui/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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

bevy_ios_iap_egui/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "bevy_ios_iap_egui"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "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" }

0 commit comments

Comments
 (0)