Skip to content

Commit

Permalink
release 0.7.0 support for bevy 0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
foxzool committed Nov 30, 2024
1 parent 30ed6bc commit bb9d15f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bevy_http_client"
description = "A simple HTTP client for Bevy"
version = "0.6.0"
version = "0.7.0"
edition = "2021"
readme = "README.md"
repository = "https://github.com/foxzool/bevy_http_client"
Expand All @@ -12,11 +12,11 @@ keywords = ["bevy", "http", "plugin", "wasm"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bevy_app = "0.15.0-rc.1"
bevy_derive = "0.15.0-rc.1"
bevy_hierarchy = "0.15.0-rc.1"
bevy_ecs = { version = "0.15.0-rc.1", features = ["multi_threaded"] }
bevy_tasks = "0.15.0-rc.1"
bevy_app = "0.15.0"
bevy_derive = "0.15.0"
bevy_hierarchy = "0.15.0"
bevy_ecs = { version = "0.15.0", features = ["multi_threaded"] }
bevy_tasks = "0.15.0"

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

[dev-dependencies]
bevy = { version = "0.15.0-rc.1", default-features = false, features = [
bevy = { version = "0.15.0", default-features = false, features = [
"animation",
"bevy_asset",
"bevy_gilrs",
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ fn handle_response(mut ev_response: EventReader<TypedResponse<IpInfo>>) {

| bevy | bevy_http_client |
|------|------------------|
| 0.15 | 0.7 |
| 0.14 | 0.6 |
| 0.13 | 0.4, 0,5 |
| 0.12 | 0.3 |
Expand Down

0 comments on commit bb9d15f

Please sign in to comment.