Skip to content

Commit

Permalink
Bump version to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robamler committed Oct 23, 2024
1 parent 9651182 commit 26c4a26
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
```

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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.
```

Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
//!
//! ```toml
//! [dependencies]
//! constriction = "0.4.0"
//! constriction = "0.4.1"
//! ```
//!
//! ## System Requirements
Expand Down
2 changes: 1 addition & 1 deletion src/pybindings/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 26c4a26

Please sign in to comment.