Skip to content

Commit ec5a5bc

Browse files
committed
bump version to 0.9.3
1 parent 60b2205 commit ec5a5bc

File tree

7 files changed

+21
-20
lines changed

7 files changed

+21
-20
lines changed

Cargo.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "firewheel"
3-
version = "0.9.2"
43
description = "A mid-level open source audio graph engine for games and other applications"
4+
version.workspace = true
55
repository.workspace = true
66
edition.workspace = true
77
license.workspace = true
@@ -15,6 +15,7 @@ exclude.workspace = true
1515
all-features = true
1616

1717
[workspace.package]
18+
version = "0.9.3"
1819
edition = "2021"
1920
license = "MIT OR Apache-2.0"
2021
authors = ["Billy Messenger <billydm@noreply.codeberg.org>"]
@@ -176,7 +177,7 @@ arrayvec = { version = "0.7", default-features = false }
176177
bitflags = "2"
177178
thunderdome = { version = "0.6", default-features = false }
178179
fast-interleave = "0.1"
179-
firewheel-macros = { path = "crates/firewheel-macros", version = "0.9.2" }
180+
firewheel-macros = { path = "crates/firewheel-macros", version = "0.9.3" }
180181
bevy_platform = { version = "0.17", default-features = false, features = [
181182
"alloc",
182183
] }
@@ -186,11 +187,11 @@ num-traits = { version = "0.2", default-features = false }
186187
serde = { version = "1", features = ["derive"] }
187188

188189
[dependencies]
189-
firewheel-core = { path = "crates/firewheel-core", version = "0.9.2", default-features = false }
190-
firewheel-graph = { path = "crates/firewheel-graph", version = "0.9.2", default-features = false }
191-
firewheel-cpal = { path = "crates/firewheel-cpal", version = "0.9.2", default-features = false, optional = true }
192-
firewheel-nodes = { path = "crates/firewheel-nodes", version = "0.9.2", default-features = false }
193-
firewheel-pool = { path = "crates/firewheel-pool", version = "0.9.2", default-features = false, optional = true }
190+
firewheel-core = { path = "crates/firewheel-core", version = "0.9.3", default-features = false }
191+
firewheel-graph = { path = "crates/firewheel-graph", version = "0.9.3", default-features = false }
192+
firewheel-cpal = { path = "crates/firewheel-cpal", version = "0.9.3", default-features = false, optional = true }
193+
firewheel-nodes = { path = "crates/firewheel-nodes", version = "0.9.3", default-features = false }
194+
firewheel-pool = { path = "crates/firewheel-pool", version = "0.9.3", default-features = false, optional = true }
194195
thunderdome = { workspace = true, optional = true }
195196
smallvec = { workspace = true, optional = true }
196197
thiserror.workspace = true

crates/firewheel-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "firewheel-core"
3-
version = "0.9.2"
43
description = "Shared types for Firewheel crates"
54
homepage = "https://github.com/BillyDM/firewheel/blob/main/crates/firewheel-core"
5+
version.workspace = true
66
repository.workspace = true
77
edition.workspace = true
88
license.workspace = true

crates/firewheel-cpal/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "firewheel-cpal"
3-
version = "0.9.2"
43
description = "cpal backend for Firewheel"
54
homepage = "https://github.com/BillyDM/firewheel/blob/main/crates/firewheel-cpal"
5+
version.workspace = true
66
repository.workspace = true
77
edition.workspace = true
88
license.workspace = true
@@ -20,8 +20,8 @@ resample_inputs = ["fixed-resample/fft-resampler"]
2020
wasm-bindgen = ["cpal/wasm-bindgen"]
2121

2222
[dependencies]
23-
firewheel-core = { path = "../firewheel-core", version = "0.9.2" }
24-
firewheel-graph = { path = "../firewheel-graph", version = "0.9.2" }
23+
firewheel-core = { path = "../firewheel-core", version = "0.9.3" }
24+
firewheel-graph = { path = "../firewheel-graph", version = "0.9.3" }
2525
cpal = "0.16.0"
2626
log.workspace = true
2727
ringbuf.workspace = true

crates/firewheel-graph/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "firewheel-graph"
3-
version = "0.9.2"
43
description = "Core audio graph algorithm and executor for Firewheel"
54
homepage = "https://github.com/BillyDM/firewheel/blob/main/crates/firewheel-graph"
5+
version.workspace = true
66
repository.workspace = true
77
edition.workspace = true
88
license.workspace = true
@@ -56,7 +56,7 @@ bevy_reflect = ["dep:bevy_reflect"]
5656
unsafe_flush_denormals_to_zero = []
5757

5858
[dependencies]
59-
firewheel-core = { path = "../firewheel-core", version = "0.9.2", default-features = false }
59+
firewheel-core = { path = "../firewheel-core", version = "0.9.3", default-features = false }
6060
log.workspace = true
6161
ringbuf.workspace = true
6262
triple_buffer.workspace = true

crates/firewheel-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "firewheel-macros"
3-
version = "0.9.2"
43
description = "Macros for Firewheel crates"
54
homepage = "https://github.com/BillyDM/firewheel/blob/main/crates/firewheel-macros"
5+
version.workspace = true
66
repository.workspace = true
77
edition.workspace = true
88
license.workspace = true

crates/firewheel-nodes/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "firewheel-nodes"
3-
version = "0.9.2"
43
description = "Official factory nodes for the Firewheel audio engine"
54
homepage = "https://github.com/BillyDM/firewheel/blob/main/crates/firewheel-nodes"
5+
version.workspace = true
66
repository.workspace = true
77
edition.workspace = true
88
license.workspace = true
@@ -98,7 +98,7 @@ bevy_reflect = ["dep:bevy_reflect", "firewheel-core/bevy_reflect"]
9898
serde = ["dep:serde"]
9999

100100
[dependencies]
101-
firewheel-core = { path = "../firewheel-core", version = "0.9.2", default-features = false }
101+
firewheel-core = { path = "../firewheel-core", version = "0.9.3", default-features = false }
102102
bevy_platform.workspace = true
103103
num-traits.workspace = true
104104
smallvec = { workspace = true, optional = true }

crates/firewheel-pool/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "firewheel-pool"
3-
version = "0.9.2"
43
description = "FX chain pools for Firewheel"
54
homepage = "https://github.com/BillyDM/firewheel/blob/main/crates/firewheel-pool"
5+
version.workspace = true
66
repository.workspace = true
77
edition.workspace = true
88
license.workspace = true
@@ -31,9 +31,9 @@ sampler = ["firewheel-nodes/sampler"]
3131
spatial_basic = ["firewheel-nodes/spatial_basic"]
3232

3333
[dependencies]
34-
firewheel-core = { path = "../firewheel-core", version = "0.9.2", default-features = false }
35-
firewheel-graph = { path = "../firewheel-graph", version = "0.9.2", default-features = false }
36-
firewheel-nodes = { path = "../firewheel-nodes", version = "0.9.2", default-features = false }
34+
firewheel-core = { path = "../firewheel-core", version = "0.9.3", default-features = false }
35+
firewheel-graph = { path = "../firewheel-graph", version = "0.9.3", default-features = false }
36+
firewheel-nodes = { path = "../firewheel-nodes", version = "0.9.3", default-features = false }
3737
smallvec.workspace = true
3838
thunderdome.workspace = true
3939
thiserror.workspace = true

0 commit comments

Comments
 (0)