Skip to content

Commit 9035bb6

Browse files
authored
Merge pull request #134 from aldanor/feature/0.7.1
0.7.1
2 parents 48f7142 + acc297c commit 9035bb6

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## 0.7.1
6+
57
### Added
68
- Slices can now be used used where trait item `Dimension` is required.
79
- Arrays of arbitrary sizes are now supported in `hdf5-types`. This requires

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdf5"
3-
version = "0.7.0" # !V
3+
version = "0.7.1" # !V
44
authors = ["Ivan Smirnov <[email protected]>"]
55
keywords = ["hdf5"]
66
license = "MIT OR Apache-2.0"
@@ -28,9 +28,9 @@ ndarray = ">=0.13,<0.15"
2828
num-integer = "0.1"
2929
num-traits = "0.2"
3030
mpi-sys = { version = "0.1", optional = true }
31-
hdf5-sys = { path = "hdf5-sys", version = "0.7.0" } # !V
32-
hdf5-types = { path = "hdf5-types", version = "0.7.0" } # !V
33-
hdf5-derive = { path = "hdf5-derive", version = "0.7.0" } # !V
31+
hdf5-sys = { path = "hdf5-sys", version = "0.7.1" } # !V
32+
hdf5-types = { path = "hdf5-types", version = "0.7.1" } # !V
33+
hdf5-derive = { path = "hdf5-derive", version = "0.7.1" } # !V
3434

3535
[dev-dependencies]
3636
paste = "1.0"

hdf5-derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdf5-derive"
3-
version = "0.7.0" # !V
3+
version = "0.7.1" # !V
44
authors = ["Ivan Smirnov <[email protected]>"]
55
keywords = ["hdf5"]
66
license = "MIT OR Apache-2.0"

hdf5-src/Cargo.toml

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

hdf5-sys/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdf5-sys"
3-
version = "0.7.0" # !V
3+
version = "0.7.1" # !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 }
19-
hdf5-src = { path = "../hdf5-src", version = "0.7.0", optional = true } # !V
19+
hdf5-src = { path = "../hdf5-src", version = "0.7.1", optional = true } # !V
2020

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

hdf5-types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdf5-types"
3-
version = "0.7.0" # !V
3+
version = "0.7.1" # !V
44
authors = ["Ivan Smirnov <[email protected]>"]
55
keywords = ["hdf5"]
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)