Skip to content

Commit

Permalink
bump crate versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Billy Messenger authored and Billy Messenger committed Sep 13, 2023
1 parent 7a1a5e4 commit 75020d7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "creek"
version = "1.1.0"
version = "1.1.1"
authors = ["Billy Messenger <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -57,9 +57,9 @@ decode-all = [
encode-wav = ["creek-encode-wav"]

[dependencies]
creek-core = { version = "0.1", path = "core" }
creek-decode-symphonia = { version = "0.2.0", path = "decode_symphonia", optional = true }
creek-encode-wav = { version = "0.1.0", path = "encode_wav", optional = true }
creek-core = { version = "0.1.1", path = "core" }
creek-decode-symphonia = { version = "0.2.1", path = "decode_symphonia", optional = true }
creek-encode-wav = { version = "0.1.1", path = "encode_wav", optional = true }

# Unoptimized builds result in prominent gaps of silence after cache misses in the demo player.
[profile.dev]
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "creek-core"
version = "0.1.0"
version = "0.1.1"
authors = ["Billy Messenger <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions decode_symphonia/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "creek-decode-symphonia"
version = "0.2.0"
version = "0.2.1"
authors = ["Billy Messenger <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -14,7 +14,7 @@ repository = "https://github.com/RustyDAW/creek"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
creek-core = { version = "0.1", path = "../core" }
creek-core = { version = "0.1.1", path = "../core" }
log = "0.4"
symphonia = "0.5"

Expand Down
4 changes: 2 additions & 2 deletions encode_wav/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "creek-encode-wav"
version = "0.1.0"
version = "0.1.1"
authors = ["Billy Messenger <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -13,5 +13,5 @@ repository = "https://github.com/RustyDAW/creek"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
creek-core = { version = "0.1", path = "../core" }
creek-core = { version = "0.1.1", path = "../core" }
byte-slice-cast = "1.0.0"

0 comments on commit 75020d7

Please sign in to comment.