From cba9b0e333b15d8cc7d6d976fd6aa3ce6d0f1b1d Mon Sep 17 00:00:00 2001 From: thewh1teagle <61390950+thewh1teagle@users.noreply.github.com> Date: Fri, 18 Oct 2024 19:52:05 +0300 Subject: [PATCH] v0.4.1 --- BUILDING.md | 2 +- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- sys/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index 5651397..74632df 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -191,5 +191,5 @@ For debug the build process of sherpa-onnx, please set `BUILD_DEBUG=1` environme ## Release new version ```console -gh release create v0.4.0 --title v0.4.0 --generate-notes +gh release create v0.4.1 --title v0.4.1 --generate-notes ``` diff --git a/Cargo.lock b/Cargo.lock index bfcd67b..4f99e65 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -396,7 +396,7 @@ dependencies = [ [[package]] name = "sherpa-rs" -version = "0.4.0" +version = "0.4.1" dependencies = [ "clap", "eyre", @@ -407,7 +407,7 @@ dependencies = [ [[package]] name = "sherpa-rs-sys" -version = "0.4.0" +version = "0.4.1" dependencies = [ "bindgen", "cmake", diff --git a/Cargo.toml b/Cargo.toml index 449b3de..b026277 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["sys"] [package] name = "sherpa-rs" -version = "0.4.0" +version = "0.4.1" edition = "2021" authors = ["thewh1teagle"] license = "MIT" @@ -22,7 +22,7 @@ keywords = [ eyre = "0.6.12" hound = { version = "3.5.1" } log = "0.4.22" -sherpa-rs-sys = { path = "sys", version = "0.4.0" } +sherpa-rs-sys = { path = "sys", version = "0.4.1" } [dev-dependencies] clap = { version = "4.5.8", features = ["derive"] } diff --git a/sys/Cargo.toml b/sys/Cargo.toml index 2e370f7..f537bea 100644 --- a/sys/Cargo.toml +++ b/sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sherpa-rs-sys" -version = "0.4.0" +version = "0.4.1" edition = "2021" authors = ["thewh1teagle"] homepage = "https://github.com/thewh1teagle/sherpa-rs"