Skip to content

Commit

Permalink
Bump version to v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
robamler committed Jan 11, 2022
1 parent 8c173bb commit a045f3d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 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 @@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0 OR BSL-1.0"
name = "constriction"
readme = "README-rust.md"
repository = "https://github.com/bamler-lab/constriction/"
version = "0.2.2"
version = "0.2.3"

# 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.2.2
pip install constriction~=0.2.3
```

### Hello, World
Expand Down
4 changes: 2 additions & 2 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.2.2
pip install constriction~=0.2.3
```

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.2.2"
constriction = "0.2.3"
probability = "0.17" # Not strictly required but used in many code examples.
```

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ keywords = ["compression", "machine-learning", "entropy-coding", "range-coding",
license = "MIT OR Apache-2.0 OR BSL-1.0"
name = "constriction"
repository = "https://github.com/bamler-lab/constriction/"
version = "0.2.2"
version = "0.2.3"

[tool.poetry.dependencies]
numpy = "^1.19"
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.2.2"
//! constriction = "0.2.3"
//! ```
//!
//! ## 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 @@ -36,7 +36,7 @@ use pyo3::{prelude::*, wrap_pymodule};
/// ### Installing `constriction` for Python
///
/// ```bash
/// pip install constriction~=0.2.2
/// pip install constriction~=0.2.3
/// ```
///
/// ### Hello, World
Expand Down

0 comments on commit a045f3d

Please sign in to comment.