Skip to content

Commit

Permalink
Merge pull request #179 from aldanor/release/0.8
Browse files Browse the repository at this point in the history
Release 0.8
  • Loading branch information
aldanor committed Oct 23, 2021
2 parents 71da959 + ef015f2 commit ab10c96
Show file tree
Hide file tree
Showing 6 changed files with 264 additions and 206 deletions.
448 changes: 253 additions & 195 deletions CHANGELOG.md

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hdf5"
version = "0.7.1" # !V
version = "0.8.0" # !V
authors = ["Ivan Smirnov <i.s.smirnov@gmail.com>"]
keywords = ["hdf5"]
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions hdf5-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hdf5-derive"
version = "0.7.1" # !V
version = "0.8.0" # !V
authors = ["Ivan Smirnov <i.s.smirnov@gmail.com>"]
keywords = ["hdf5"]
license = "MIT OR Apache-2.0"
Expand All @@ -19,4 +19,4 @@ syn = { version = "^1.0.5", features = ["derive", "extra-traits"]}

[dev-dependencies]
trybuild = "1.0"
hdf5 = { version = ">=0.6", path = ".." }
hdf5 = { version = ">=0.8", path = ".." }
2 changes: 1 addition & 1 deletion hdf5-src/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hdf5-src"
version = "0.7.1" # !V
version = "0.8.0" # !V
authors = ["Ivan Smirnov <i.s.smirnov@gmail.com>"]
keywords = ["hdf5"]
license-file = "ext/hdf5/COPYING"
Expand Down
4 changes: 2 additions & 2 deletions hdf5-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hdf5-sys"
version = "0.7.1" # !V
version = "0.8.0" # !V
authors = ["Ivan Smirnov <i.s.smirnov@gmail.com>"]
keywords = ["hdf5"]
license = "MIT OR Apache-2.0"
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions hdf5-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hdf5-types"
version = "0.7.1" # !V
version = "0.8.0" # !V
authors = ["Ivan Smirnov <i.s.smirnov@gmail.com>"]
keywords = ["hdf5"]
license = "MIT OR Apache-2.0"
Expand All @@ -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]
Expand Down

0 comments on commit ab10c96

Please sign in to comment.