Skip to content

Commit 87738f9

Browse files
committed
bump version to 0.9.2
1 parent c38831d commit 87738f9

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "firewheel"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
description = "A mid-level open source audio graph engine for games and other applications"
55
repository.workspace = true
66
edition.workspace = true
@@ -176,7 +176,7 @@ arrayvec = { version = "0.7", default-features = false }
176176
bitflags = "2"
177177
thunderdome = { version = "0.6", default-features = false }
178178
fast-interleave = "0.1"
179-
firewheel-macros = { path = "crates/firewheel-macros", version = "0.9.1" }
179+
firewheel-macros = { path = "crates/firewheel-macros", version = "0.9.2" }
180180
bevy_platform = { version = "0.17", default-features = false, features = [
181181
"alloc",
182182
] }
@@ -186,11 +186,11 @@ num-traits = { version = "0.2", default-features = false }
186186
serde = { version = "1", features = ["derive"] }
187187

188188
[dependencies]
189-
firewheel-core = { path = "crates/firewheel-core", version = "0.9.1", default-features = false }
190-
firewheel-graph = { path = "crates/firewheel-graph", version = "0.9.1", default-features = false }
191-
firewheel-cpal = { path = "crates/firewheel-cpal", version = "0.9.1", default-features = false, optional = true }
192-
firewheel-nodes = { path = "crates/firewheel-nodes", version = "0.9.1", default-features = false }
193-
firewheel-pool = { path = "crates/firewheel-pool", version = "0.9.1", default-features = false, optional = true }
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 }
194194
thunderdome = { workspace = true, optional = true }
195195
smallvec = { workspace = true, optional = true }
196196
thiserror.workspace = true

crates/firewheel-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "firewheel-core"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
description = "Shared types for Firewheel crates"
55
homepage = "https://github.com/BillyDM/firewheel/blob/main/crates/firewheel-core"
66
repository.workspace = true
@@ -108,7 +108,7 @@ arrayvec.workspace = true
108108
bitflags.workspace = true
109109
thunderdome.workspace = true
110110
symphonium = { version = "0.6.5", default-features = false, optional = true }
111-
fixed-resample = { version = "0.9.1", default-features = false, features = [
111+
fixed-resample = { version = "0.9.2", default-features = false, features = [
112112
"resampler",
113113
"fft-resampler",
114114
], optional = true }

crates/firewheel-cpal/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "firewheel-cpal"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
description = "cpal backend for Firewheel"
55
homepage = "https://github.com/BillyDM/firewheel/blob/main/crates/firewheel-cpal"
66
repository.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.1" }
24-
firewheel-graph = { path = "../firewheel-graph", version = "0.9.1" }
23+
firewheel-core = { path = "../firewheel-core", version = "0.9.2" }
24+
firewheel-graph = { path = "../firewheel-graph", version = "0.9.2" }
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,6 +1,6 @@
11
[package]
22
name = "firewheel-graph"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
description = "Core audio graph algorithm and executor for Firewheel"
55
homepage = "https://github.com/BillyDM/firewheel/blob/main/crates/firewheel-graph"
66
repository.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.1", default-features = false }
59+
firewheel-core = { path = "../firewheel-core", version = "0.9.2", 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,6 +1,6 @@
11
[package]
22
name = "firewheel-macros"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
description = "Macros for Firewheel crates"
55
homepage = "https://github.com/BillyDM/firewheel/blob/main/crates/firewheel-macros"
66
repository.workspace = true

crates/firewheel-nodes/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "firewheel-nodes"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
description = "Official factory nodes for the Firewheel audio engine"
55
homepage = "https://github.com/BillyDM/firewheel/blob/main/crates/firewheel-nodes"
66
repository.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.1", default-features = false }
101+
firewheel-core = { path = "../firewheel-core", version = "0.9.2", 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,6 +1,6 @@
11
[package]
22
name = "firewheel-pool"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
description = "FX chain pools for Firewheel"
55
homepage = "https://github.com/BillyDM/firewheel/blob/main/crates/firewheel-pool"
66
repository.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.1", default-features = false }
35-
firewheel-graph = { path = "../firewheel-graph", version = "0.9.1", default-features = false }
36-
firewheel-nodes = { path = "../firewheel-nodes", version = "0.9.1", default-features = false }
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 }
3737
smallvec.workspace = true
3838
thunderdome.workspace = true
3939
thiserror.workspace = true

0 commit comments

Comments
 (0)