Skip to content

Commit ab10c96

Browse files
authored
Merge pull request #179 from aldanor/release/0.8
Release 0.8
2 parents 71da959 + ef015f2 commit ab10c96

File tree

6 files changed

+264
-206
lines changed

6 files changed

+264
-206
lines changed

CHANGELOG.md

Lines changed: 253 additions & 195 deletions
Large diffs are not rendered by default.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdf5"
3-
version = "0.7.1" # !V
3+
version = "0.8.0" # !V
44
authors = ["Ivan Smirnov <[email protected]>"]
55
keywords = ["hdf5"]
66
license = "MIT OR Apache-2.0"
@@ -30,9 +30,9 @@ ndarray = "0.15"
3030
paste = "1.0"
3131
mpi-sys = { version = "0.1", optional = true }
3232
errno = { version = "0.2", optional = true }
33-
hdf5-sys = { path = "hdf5-sys", version = "0.7.1" } # !V
34-
hdf5-types = { path = "hdf5-types", version = "0.7.1" } # !V
35-
hdf5-derive = { path = "hdf5-derive", version = "0.7.1" } # !V
33+
hdf5-sys = { path = "hdf5-sys", version = "0.8.0" } # !V
34+
hdf5-types = { path = "hdf5-types", version = "0.8.0" } # !V
35+
hdf5-derive = { path = "hdf5-derive", version = "0.8.0" } # !V
3636
blosc-sys = { version = "0.1.1", package = "blosc-src", optional = true }
3737
lzf-sys = { version = "0.1", optional = true }
3838
cfg-if = "1.0"

hdf5-derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdf5-derive"
3-
version = "0.7.1" # !V
3+
version = "0.8.0" # !V
44
authors = ["Ivan Smirnov <[email protected]>"]
55
keywords = ["hdf5"]
66
license = "MIT OR Apache-2.0"
@@ -19,4 +19,4 @@ syn = { version = "^1.0.5", features = ["derive", "extra-traits"]}
1919

2020
[dev-dependencies]
2121
trybuild = "1.0"
22-
hdf5 = { version = ">=0.6", path = ".." }
22+
hdf5 = { version = ">=0.8", path = ".." }

hdf5-src/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdf5-src"
3-
version = "0.7.1" # !V
3+
version = "0.8.0" # !V
44
authors = ["Ivan Smirnov <[email protected]>"]
55
keywords = ["hdf5"]
66
license-file = "ext/hdf5/COPYING"

hdf5-sys/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdf5-sys"
3-
version = "0.7.1" # !V
3+
version = "0.8.0" # !V
44
authors = ["Ivan Smirnov <[email protected]>"]
55
keywords = ["hdf5"]
66
license = "MIT OR Apache-2.0"
@@ -16,7 +16,7 @@ readme = "README.md"
1616
libc = "0.2"
1717
mpi-sys = { version = "0.1", optional = true }
1818
libz-sys = { version = "1.0.25", optional = true, default-features = false }
19-
hdf5-src = { path = "../hdf5-src", version = "0.7.1", optional = true } # !V
19+
hdf5-src = { path = "../hdf5-src", version = "0.8.0", optional = true } # !V
2020

2121
# Please see README for further explanation of these feature flags
2222
[features]

hdf5-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdf5-types"
3-
version = "0.7.1" # !V
3+
version = "0.8.0" # !V
44
authors = ["Ivan Smirnov <[email protected]>"]
55
keywords = ["hdf5"]
66
license = "MIT OR Apache-2.0"
@@ -16,7 +16,7 @@ h5-alloc = []
1616
[dependencies]
1717
ascii = "1.0"
1818
libc = "0.2"
19-
hdf5-sys = { version = "0.7.1", path = "../hdf5-sys" } # !V
19+
hdf5-sys = { version = "0.8.0", path = "../hdf5-sys" } # !V
2020
cfg-if = "1.0.0"
2121

2222
[dev-dependencies]

0 commit comments

Comments
 (0)