Skip to content

Commit

Permalink
Release audio-core, audio 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Dec 4, 2023
1 parent 18427c9 commit 0d8c65e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions audio-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "audio-core"
version = "0.2.0-alpha.4"
version = "0.2.0"
authors = ["John-John Tedro <[email protected]>"]
edition = "2018"
rust-version = "1.65"
Expand All @@ -18,4 +18,4 @@ default = ["std"]
std = []

[dev-dependencies]
audio = { version = "0.2.0-alpha.4", path = "../audio" }
audio = { version = "0.2.0", path = "../audio" }
4 changes: 2 additions & 2 deletions audio-device/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ wasapi = [

[dependencies]
tracing = "0.1.36"
audio-core = { version = "0.2.0-alpha.4", path = "../audio-core" }
audio-core = { version = "0.2.0", path = "../audio-core" }
thiserror = "1.0.31"
rand = "0.8.5"
ste = { version = "0.1.0-alpha.11", path = "../ste" }
Expand All @@ -56,7 +56,7 @@ alsa-sys = { package = "audio-device-alsa-sys", version = "0.1.0-alpha.1", path
libc = { version = "0.2.125", optional = true }

[dev-dependencies]
audio = { version = "0.2.0-alpha.4", path = "../audio" }
audio = { version = "0.2.0", path = "../audio" }
audio-generator = { version = "0.1.0-alpha.2", path = "../audio-generator" }
anyhow = "1.0.57"
tokio = { version = "1.18.1", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion audio-generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ keywords = ["audio", "buffer", "dsp"]
categories = ["multimedia::audio"]

[dependencies]
audio-core = { version = "0.2.0-alpha.4", path = "../audio-core" }
audio-core = { version = "0.2.0", path = "../audio-core" }
4 changes: 2 additions & 2 deletions audio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "audio"
version = "0.2.0-alpha.4"
version = "0.2.0"
authors = ["John-John Tedro <[email protected]>"]
edition = "2018"
rust-version = "1.65"
Expand All @@ -18,7 +18,7 @@ default = ["std"]
std = ["audio-core/std"]

[dependencies]
audio-core = { version = "0.2.0-alpha.4", path = "../audio-core" }
audio-core = { version = "0.2.0", path = "../audio-core" }

[dev-dependencies]
rand = "0.8.5"
Expand Down

0 comments on commit 0d8c65e

Please sign in to comment.