Skip to content

Commit bb9d15f

Browse files
committed
release 0.7.0 support for bevy 0.15
1 parent 30ed6bc commit bb9d15f

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

Cargo.toml

+7-7
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.6.0"
4+
version = "0.7.0"
55
edition = "2021"
66
readme = "README.md"
77
repository = "https://github.com/foxzool/bevy_http_client"
@@ -12,11 +12,11 @@ keywords = ["bevy", "http", "plugin", "wasm"]
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
bevy_app = "0.15.0-rc.1"
16-
bevy_derive = "0.15.0-rc.1"
17-
bevy_hierarchy = "0.15.0-rc.1"
18-
bevy_ecs = { version = "0.15.0-rc.1", features = ["multi_threaded"] }
19-
bevy_tasks = "0.15.0-rc.1"
15+
bevy_app = "0.15.0"
16+
bevy_derive = "0.15.0"
17+
bevy_hierarchy = "0.15.0"
18+
bevy_ecs = { version = "0.15.0", features = ["multi_threaded"] }
19+
bevy_tasks = "0.15.0"
2020

2121
crossbeam-channel = "0.5.11"
2222
ehttp = { version = "0.5.0", features = ["native-async", "json"] }
@@ -27,7 +27,7 @@ serde_json = "1.0"
2727
doctest = false
2828

2929
[dev-dependencies]
30-
bevy = { version = "0.15.0-rc.1", default-features = false, features = [
30+
bevy = { version = "0.15.0", default-features = false, features = [
3131
"animation",
3232
"bevy_asset",
3333
"bevy_gilrs",

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ fn handle_response(mut ev_response: EventReader<TypedResponse<IpInfo>>) {
5050

5151
| bevy | bevy_http_client |
5252
|------|------------------|
53+
| 0.15 | 0.7 |
5354
| 0.14 | 0.6 |
5455
| 0.13 | 0.4, 0,5 |
5556
| 0.12 | 0.3 |

0 commit comments

Comments
 (0)