From ef015f2884553c464452d24542db1548d29d620b Mon Sep 17 00:00:00 2001 From: Ivan Smirnov Date: Sat, 23 Oct 2021 17:36:17 +0100 Subject: [PATCH] Release 0.8.0 --- CHANGELOG.md | 4 +++- Cargo.toml | 8 ++++---- hdf5-derive/Cargo.toml | 2 +- hdf5-src/Cargo.toml | 2 +- hdf5-sys/Cargo.toml | 4 ++-- hdf5-types/Cargo.toml | 4 ++-- 6 files changed, 13 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ccdc0808..9e68f5cbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog -## Unreleased +## 0.8.0 + +Release date: Oct 23, 2021. ### Added diff --git a/Cargo.toml b/Cargo.toml index 2be7eb3eb..0c3290b98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hdf5" -version = "0.7.1" # !V +version = "0.8.0" # !V authors = ["Ivan Smirnov "] keywords = ["hdf5"] license = "MIT OR Apache-2.0" @@ -30,9 +30,9 @@ ndarray = "0.15" paste = "1.0" mpi-sys = { version = "0.1", optional = true } errno = { version = "0.2", optional = true } -hdf5-sys = { path = "hdf5-sys", version = "0.7.1" } # !V -hdf5-types = { path = "hdf5-types", version = "0.7.1" } # !V -hdf5-derive = { path = "hdf5-derive", version = "0.7.1" } # !V +hdf5-sys = { path = "hdf5-sys", version = "0.8.0" } # !V +hdf5-types = { path = "hdf5-types", version = "0.8.0" } # !V +hdf5-derive = { path = "hdf5-derive", version = "0.8.0" } # !V blosc-sys = { version = "0.1.1", package = "blosc-src", optional = true } lzf-sys = { version = "0.1", optional = true } cfg-if = "1.0" diff --git a/hdf5-derive/Cargo.toml b/hdf5-derive/Cargo.toml index 6cdec0a36..04b91b21a 100644 --- a/hdf5-derive/Cargo.toml +++ b/hdf5-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hdf5-derive" -version = "0.7.1" # !V +version = "0.8.0" # !V authors = ["Ivan Smirnov "] keywords = ["hdf5"] license = "MIT OR Apache-2.0" diff --git a/hdf5-src/Cargo.toml b/hdf5-src/Cargo.toml index 67deda964..bd4468e7b 100644 --- a/hdf5-src/Cargo.toml +++ b/hdf5-src/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hdf5-src" -version = "0.7.1" # !V +version = "0.8.0" # !V authors = ["Ivan Smirnov "] keywords = ["hdf5"] license-file = "ext/hdf5/COPYING" diff --git a/hdf5-sys/Cargo.toml b/hdf5-sys/Cargo.toml index b0a4cf2a0..8878c1e23 100644 --- a/hdf5-sys/Cargo.toml +++ b/hdf5-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hdf5-sys" -version = "0.7.1" # !V +version = "0.8.0" # !V authors = ["Ivan Smirnov "] keywords = ["hdf5"] license = "MIT OR Apache-2.0" @@ -16,7 +16,7 @@ readme = "README.md" libc = "0.2" mpi-sys = { version = "0.1", optional = true } libz-sys = { version = "1.0.25", optional = true, default-features = false } -hdf5-src = { path = "../hdf5-src", version = "0.7.1", optional = true } # !V +hdf5-src = { path = "../hdf5-src", version = "0.8.0", optional = true } # !V # Please see README for further explanation of these feature flags [features] diff --git a/hdf5-types/Cargo.toml b/hdf5-types/Cargo.toml index e526c8881..adfd3f328 100644 --- a/hdf5-types/Cargo.toml +++ b/hdf5-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hdf5-types" -version = "0.7.1" # !V +version = "0.8.0" # !V authors = ["Ivan Smirnov "] keywords = ["hdf5"] license = "MIT OR Apache-2.0" @@ -16,7 +16,7 @@ h5-alloc = [] [dependencies] ascii = "1.0" libc = "0.2" -hdf5-sys = { version = "0.7.1", path = "../hdf5-sys" } # !V +hdf5-sys = { version = "0.8.0", path = "../hdf5-sys" } # !V cfg-if = "1.0.0" [dev-dependencies]