From 75020d7cc9f26108032ecf9ffc2d4d91e3f578e9 Mon Sep 17 00:00:00 2001 From: Billy Messenger Date: Wed, 13 Sep 2023 12:53:20 -0500 Subject: [PATCH] bump crate versions --- Cargo.toml | 8 ++++---- core/Cargo.toml | 2 +- decode_symphonia/Cargo.toml | 4 ++-- encode_wav/Cargo.toml | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6c9a700..6c7885b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "creek" -version = "1.1.0" +version = "1.1.1" authors = ["Billy Messenger "] edition = "2021" license = "MIT OR Apache-2.0" @@ -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] diff --git a/core/Cargo.toml b/core/Cargo.toml index a2a95eb..0153707 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "creek-core" -version = "0.1.0" +version = "0.1.1" authors = ["Billy Messenger "] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/decode_symphonia/Cargo.toml b/decode_symphonia/Cargo.toml index c325ee7..0a848c1 100644 --- a/decode_symphonia/Cargo.toml +++ b/decode_symphonia/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "creek-decode-symphonia" -version = "0.2.0" +version = "0.2.1" authors = ["Billy Messenger "] edition = "2021" license = "MIT OR Apache-2.0" @@ -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" diff --git a/encode_wav/Cargo.toml b/encode_wav/Cargo.toml index afce3ec..d8b7dc2 100644 --- a/encode_wav/Cargo.toml +++ b/encode_wav/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "creek-encode-wav" -version = "0.1.0" +version = "0.1.1" authors = ["Billy Messenger "] edition = "2021" license = "MIT OR Apache-2.0" @@ -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"