Skip to content

Commit b6dc1a7

Browse files
committed
chore: 升级 Bevy 到 0.18.0 并更新版本到 0.10.0
- 升级所有 Bevy 依赖到 0.18.0 - 移除不存在的 animation 特性 - 更新版本号到 0.10.0 - 更新 CHANGELOG 和 README 文档
1 parent 86a3334 commit b6dc1a7

3 files changed

Lines changed: 22 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.10.0] - 2025-01-15
9+
10+
### Changed
11+
- Bump Bevy version to 0.18.0
12+
- Updated all Bevy dependencies to 0.18.0 compatible versions
13+
- bevy_app: 0.18.0
14+
- bevy_derive: 0.18
15+
- bevy_ecs: 0.18.0
16+
- bevy_tasks: 0.18.0
17+
- bevy_log: 0.18.0
18+
19+
### Removed
20+
- Removed `animation` feature from dev-dependencies (no longer available in Bevy 0.18)
21+
822
## [0.9.0] - 2025-10-01
923

1024
### Changed

Cargo.toml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bevy_http_client"
33
description = "A simple HTTP client for Bevy"
4-
version = "0.9.0"
4+
version = "0.10.0"
55
edition = "2021"
66
readme = "README.md"
77
homepage = "https://crates.io/crates/bevy_http_client"
@@ -14,11 +14,11 @@ keywords = ["bevy", "http", "plugin", "wasm"]
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
bevy_app = "0.17.0"
18-
bevy_derive = "0.17"
19-
bevy_ecs = { version = "0.17.0", features = ["multi_threaded"] }
20-
bevy_tasks = "0.17.0"
21-
bevy_log = "0.17.0"
17+
bevy_app = "0.18.0"
18+
bevy_derive = "0.18"
19+
bevy_ecs = { version = "0.18.0", features = ["multi_threaded"] }
20+
bevy_tasks = "0.18.0"
21+
bevy_log = "0.18.0"
2222

2323
crossbeam-channel = "0.5.11"
2424
ehttp = { version = "0.5.0", features = ["native-async", "json"] }
@@ -28,8 +28,7 @@ serde_json = "1.0"
2828

2929

3030
[dev-dependencies]
31-
bevy = { version = "0.17.0", default-features = false, features = [
32-
"animation",
31+
bevy = { version = "0.18.0", default-features = false, features = [
3332
"bevy_asset",
3433
"bevy_gilrs",
3534
"bevy_scene",

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ fn handle_error(mut ev_error: MessageReader<TypedResponseError<IpInfo>>) {
6161

6262
| bevy | bevy_http_client |
6363
|------|------------------|
64+
| 0.18 | 0.10.0 |
6465
| 0.17 | 0.9.0 |
6566
| 0.16 | 0.8.3 |
6667
| 0.15 | 0.7 |

0 commit comments

Comments
 (0)