From 26c4a26f46dd96bf8945f3fb6d42e5fceccd0e79 Mon Sep 17 00:00:00 2001 From: Robert Bamler Date: Wed, 23 Oct 2024 11:10:21 +0200 Subject: [PATCH] Bump version to 0.4.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- README-python.md | 2 +- README-rust.md | 2 +- README.md | 6 +++--- src/lib.rs | 2 +- src/pybindings/mod.rs | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e185bc0..9e4daed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -113,7 +113,7 @@ checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" [[package]] name = "constriction" -version = "0.4.0" +version = "0.4.1" dependencies = [ "byteorder", "criterion", diff --git a/Cargo.toml b/Cargo.toml index dd6b7ab..b777f12 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ name = "constriction" readme = "README-rust.md" repository = "https://github.com/bamler-lab/constriction/" rust-version = "1.75" # for feature `return_position_impl_trait_in_traits` -version = "0.4.0" +version = "0.4.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README-python.md b/README-python.md index 3d71aee..71d8a9a 100644 --- a/README-python.md +++ b/README-python.md @@ -29,7 +29,7 @@ into a web app by using `constriction` in a WebAssembly module). ### Installing `constriction` for Python ```bash -pip install constriction~=0.4.0 +pip install constriction~=0.4.1 ``` ### Hello, World diff --git a/README-rust.md b/README-rust.md index 4b043f8..28ab6e3 100644 --- a/README-rust.md +++ b/README-rust.md @@ -30,7 +30,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -constriction = "0.4.0" +constriction = "0.4.1" probability = "0.20.3" # Not strictly required but used in many examples. ``` diff --git a/README.md b/README.md index 6bf245c..9c56a83 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ unnecessarily limit what you can achieve with `constriction`. Install `constriction` for Python: ```bash -pip install constriction~=0.4.0 +pip install constriction~=0.4.1 ``` Then go ahead and encode and decode some data: @@ -105,7 +105,7 @@ Add this line to your `Cargo.toml`: ```toml [dependencies] -constriction = "0.4.0" +constriction = "0.4.1" probability = "0.20" # Not strictly required but used in many code examples. ``` @@ -114,7 +114,7 @@ features (and you can't use the `probability` crate): ```toml [dependencies] -constriction = {version = "0.4.0", default-features = false} # for `no_std` mode +constriction = {version = "0.4.1", default-features = false} # for `no_std` mode ``` Then go ahead and encode and decode some data: diff --git a/src/lib.rs b/src/lib.rs index 797ea53..d4b1802 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -74,7 +74,7 @@ //! //! ```toml //! [dependencies] -//! constriction = "0.4.0" +//! constriction = "0.4.1" //! ``` //! //! ## System Requirements diff --git a/src/pybindings/mod.rs b/src/pybindings/mod.rs index 76c9f8e..51cf9e5 100644 --- a/src/pybindings/mod.rs +++ b/src/pybindings/mod.rs @@ -40,7 +40,7 @@ use crate::NanError; /// ### Installing `constriction` for Python /// /// ```bash -/// pip install constriction~=0.4.0 +/// pip install constriction~=0.4.1 /// ``` /// /// ### Hello, World