Skip to content

Commit

Permalink
chore: release v0.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
zicklag committed Sep 12, 2024
1 parent d3d2b11 commit 42966a4
Show file tree
Hide file tree
Showing 12 changed files with 40 additions and 40 deletions.
36 changes: 18 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ default-members = ["framework_crates/*"]

[workspace.package]
edition = "2021"
version = "0.3.0"
version = "0.4.0"
rust-version = "1.71"
readme = "README.md"
homepage = "https://fishfolk.org/development/bones/introduction/"
Expand Down
6 changes: 3 additions & 3 deletions framework_crates/bones_asset/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ default = []
cid_debug_trace = []

[dependencies]
bones_utils = { version = "0.3", path = "../bones_utils", features = ["serde"] }
bones_schema = { version = "0.3", path = "../bones_schema", features = ["serde"] }
bones_utils = { version = "0.4.0", path = "../bones_utils", features = ["serde"] }
bones_schema = { version = "0.4.0", path = "../bones_schema", features = ["serde"] }

serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10"
Expand Down Expand Up @@ -48,6 +48,6 @@ notify = "6.0"
web-sys = { version = "0.3", features = ["console"] }

[dev-dependencies]
bones_schema = { version = "0.3", path = "../bones_schema", features = ["glam"] }
bones_schema = { version = "0.4", path = "../bones_schema", features = ["glam"] }
glam = "0.24"
bevy_tasks = "0.11"
2 changes: 1 addition & 1 deletion framework_crates/bones_bevy_renderer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default = ["webgl2"]
webgl2 = ["bevy/webgl2"]

[dependencies]
bones_framework = { version = "0.3", path = "../bones_framework" }
bones_framework = { version = "0.4.0", path = "../bones_framework" }

bevy_egui = "0.22"
glam = { version = "0.24", features = ["serde"] }
Expand Down
6 changes: 3 additions & 3 deletions framework_crates/bones_ecs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ keysize24 = []
keysize32 = []

[dependencies]
bones_utils = { version = "0.3", path = "../bones_utils" }
bones_schema = { version = "0.3", path = "../bones_schema" }
bones_utils = { version = "0.4.0", path = "../bones_utils" }
bones_schema = { version = "0.4.0", path = "../bones_schema" }

# Optional deps
bones_ecs_macros = { version = "0.3", path = "./macros", optional = true }
bones_ecs_macros = { version = "0.4.0", path = "./macros", optional = true }

anyhow = "1.0"
atomicell = "0.2"
Expand Down
10 changes: 5 additions & 5 deletions framework_crates/bones_framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ document-features = ["dep:document-features"]

[dependencies]
# Bones
bones_lib = { version = "0.3", path = "../bones_lib", features = ["glam"] }
bones_asset = { version = "0.3", path = "../bones_asset" }
bones_schema = { version = "0.3", path = "../bones_schema", features = ["humantime"] }
bones_scripting = { version = "0.3", path = "../bones_scripting", optional = true }
bones_lib = { version = "0.4.0", path = "../bones_lib", features = ["glam"] }
bones_asset = { version = "0.4.0", path = "../bones_asset" }
bones_schema = { version = "0.4.0", path = "../bones_schema", features = ["humantime"] }
bones_scripting = { version = "0.4.0", path = "../bones_scripting", optional = true }

# Other
anyhow = "1.0"
Expand Down Expand Up @@ -140,7 +140,7 @@ document-features = { version = "0.2", optional = true }
ggrs = { git = "https://github.com/MaxCWhitehead/ggrs.git", rev = "96499377407ce55805a9d0367b86860b74c233bd", features = [
"sync-send",
] }
bones_matchmaker_proto = { version = "0.2", path = "../../other_crates/bones_matchmaker_proto" }
bones_matchmaker_proto = { version = "0.4.0", path = "../../other_crates/bones_matchmaker_proto" }
bytes = "1.4"
mdns-sd = { version = "0.10", default-features = false }
numquant = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion framework_crates/bones_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ default = []
glam = ["bones_ecs/glam"]

[dependencies]
bones_ecs = { version = "0.3", path = "../bones_ecs" }
bones_ecs = { version = "0.4.0", path = "../bones_ecs" }
instant = "0.1.12"
4 changes: 2 additions & 2 deletions framework_crates/bones_schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ glam = ["dep:glam"]
humantime = ["dep:humantime", "serde"]

[dependencies]
bones_utils = { version = "0.3", path = "../bones_utils" }
bones_utils = { version = "0.4.0", path = "../bones_utils" }
ulid = { version = "1.0" }
paste = "1.0"
sptr = "0.3"

# Optional deps
bones_schema_macros = { version = "0.3", path = "./macros", optional = true }
bones_schema_macros = { version = "0.4.0", path = "./macros", optional = true }
glam = { version = "0.24", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
erased-serde = { version = "0.4", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions framework_crates/bones_scripting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ keywords.workspace = true
async-channel = "1.9"
tracing = "0.1"
bevy_tasks = { version = "0.11", features = ["multi-threaded"] }
bones_lib = { version = "0.3", path = "../bones_lib" }
bones_asset = { version = "0.3", path = "../bones_asset" }
bones_lib = { version = "0.4.0", path = "../bones_lib" }
bones_asset = { version = "0.4.0", path = "../bones_asset" }
piccolo = { version = "0.3" }
gc-arena = { version = "0.5" }
gc-arena-derive = { version = "0.5" }
Expand Down
2 changes: 1 addition & 1 deletion framework_crates/bones_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ keywords.workspace = true
serde = ["dep:serde", "hashbrown/serde", "ustr/serde"]

[dependencies]
bones_utils_macros = { version = "0.3", path = "./macros" }
bones_utils_macros = { version = "0.4", path = "./macros" }
smallvec = "1.11"
fxhash = "0.2"
hashbrown = { version = "0.14" }
Expand Down
4 changes: 2 additions & 2 deletions other_crates/bones_matchmaker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bones_matchmaker"
description = "Simple matchmaking server for games."
version = "0.2.0"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -16,7 +16,7 @@ scc = "1.0"
rcgen = "0.12"
tracing = "0.1"
rand = "0.8"
bones_matchmaker_proto = { version = "0.2", path = "../bones_matchmaker_proto" }
bones_matchmaker_proto = { version = "0.4.0", path = "../bones_matchmaker_proto" }
clap = { version = "4.0", features = ["derive", "env"] }
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
postcard = { version = "1.0", default-features = false, features = ["alloc"] }
Expand Down
2 changes: 1 addition & 1 deletion other_crates/bones_matchmaker_proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bones_matchmaker_proto"
description = "Network protocol types for the Bones matchmaking server."
version = "0.2.0"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down

0 comments on commit 42966a4

Please sign in to comment.