Skip to content

Commit

Permalink
Bump c-blosc2 -> 2.14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
milesgranger committed Apr 7, 2024
1 parent be179fc commit bac247f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blosc2-rs"
version = "0.2.3+2.14.0"
version = "0.2.3+2.14.3"
description = "Blosc2"
license = "MIT"
edition = "2021"
Expand All @@ -15,7 +15,7 @@ use-system-blosc2 = ["blosc2-sys/use-system-blosc2"]
static = ["blosc2-sys/static"]

[dependencies]
blosc2-sys = { path = "blosc2-sys", version = "0.2.1+2.14.0" }
blosc2-sys = { path = "blosc2-sys", version = "0.2.3+2.14.3" }
parking_lot = "^0.12"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion blosc2-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blosc2-sys"
version = "0.2.3+2.14.0"
version = "0.2.3+2.14.3"
edition = "2021"
description = "Bindings to C Blosc2"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion blosc2-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ fn main() {
// TODO: 3rd option, just assume it's discoverable in the current environment?
Err(_) => {
let lib = pkg_config::Config::new()
.exactly_version("2.14.0")
.exactly_version("2.14.3")
.probe("blosc2")
.unwrap();
for linkpath in lib.link_paths {
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ channels:
- conda-forge
dependencies:
- pkg-config
- c-blosc2 ==2.14.0
- c-blosc2 ==2.14.3
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1921,7 +1921,7 @@ mod tests {
#[test]
fn test_get_version_string() -> Result<()> {
let version = get_version_string()?;
assert_eq!(&version, "2.14.0");
assert_eq!(&version, "2.14.3");
Ok(())
}

Expand Down

0 comments on commit bac247f

Please sign in to comment.