Skip to content

Commit

Permalink
Merge pull request #134 from aldanor/feature/0.7.1
Browse files Browse the repository at this point in the history
0.7.1
  • Loading branch information
aldanor authored Jan 27, 2021
2 parents 48f7142 + acc297c commit 9035bb6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.7.1

### Added
- Slices can now be used used where trait item `Dimension` is required.
- Arrays of arbitrary sizes are now supported in `hdf5-types`. This requires
Expand Down
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.0" # !V
version = "0.7.1" # !V
authors = ["Ivan Smirnov <i.s.smirnov@gmail.com>"]
keywords = ["hdf5"]
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -28,9 +28,9 @@ ndarray = ">=0.13,<0.15"
num-integer = "0.1"
num-traits = "0.2"
mpi-sys = { version = "0.1", optional = true }
hdf5-sys = { path = "hdf5-sys", version = "0.7.0" } # !V
hdf5-types = { path = "hdf5-types", version = "0.7.0" } # !V
hdf5-derive = { path = "hdf5-derive", version = "0.7.0" } # !V
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

[dev-dependencies]
paste = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion 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.0" # !V
version = "0.7.1" # !V
authors = ["Ivan Smirnov <i.s.smirnov@gmail.com>"]
keywords = ["hdf5"]
license = "MIT OR Apache-2.0"
Expand Down
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.0" # !V
version = "0.7.1" # !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.0" # !V
version = "0.7.1" # !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 }
hdf5-src = { path = "../hdf5-src", version = "0.7.0", optional = true } # !V
hdf5-src = { path = "../hdf5-src", version = "0.7.1", optional = true } # !V

# Please see README for further explanation of these feature flags
[features]
Expand Down
2 changes: 1 addition & 1 deletion 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.0" # !V
version = "0.7.1" # !V
authors = ["Ivan Smirnov <i.s.smirnov@gmail.com>"]
keywords = ["hdf5"]
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 9035bb6

Please sign in to comment.