Skip to content

Commit aac7461

Browse files
committed
Bump versions of all crates to v0.5.0
1 parent d059818 commit aac7461

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 0.3.0-alpha.1 (unreleased)
3+
## 0.5.0
44

55
### Added
66

@@ -73,6 +73,13 @@
7373
- Removed `remutex` crate, using locking primitives from `parking_lot` crate instead.
7474
- `Container` trait has been removed, all of its functionality merged into `Group` type.
7575

76+
### Notes
77+
78+
- The version number jump is due to renaming crates `hdf5-rs` and `libhdf5-sys` to `hdf5` and
79+
`hdf5-sys`, respectively. Since there were already published crates with those names and
80+
the crates registry is meant to be immutable even if the crates are yanked, we had to
81+
bump the version so that it shadows all of the older versions.
82+
7683
## 0.2.0 (Apr 17, 2016)
7784

7885
### Added

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdf5"
3-
version = "0.2.0"
3+
version = "0.5.0"
44
authors = ["Ivan Smirnov <[email protected]>"]
55
keywords = ["hdf5"]
66
license = "MIT/Apache-2.0"
@@ -28,9 +28,9 @@ ndarray = "0.12"
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.2.0" }
32-
hdf5-types = { path = "hdf5-types", version = "0.2.0" }
33-
hdf5-derive = { path = "hdf5-derive", version = "0.2.0" }
31+
hdf5-sys = { path = "hdf5-sys", version = "0.5.0" }
32+
hdf5-types = { path = "hdf5-types", version = "0.5.0" }
33+
hdf5-derive = { path = "hdf5-derive", version = "0.5.0" }
3434

3535
[dev-dependencies]
3636
mashup = "0.1"
@@ -40,4 +40,4 @@ scopeguard = "1.0"
4040
tempdir = "0.3"
4141

4242
[build-dependencies]
43-
hdf5-sys = { path = "hdf5-sys", version = "0.2.0" }
43+
hdf5-sys = { path = "hdf5-sys", version = "0.5.0" }

hdf5-derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdf5-derive"
3-
version = "0.2.0"
3+
version = "0.5.0"
44
authors = ["Ivan Smirnov <[email protected]>"]
55
edition = "2018"
66

@@ -11,7 +11,7 @@ proc-macro = true
1111
proc-macro2 = "0.4"
1212
quote = "0.6"
1313
syn = { version = "0.15", features = ["derive", "extra-traits"]}
14-
hdf5-types = { path = "../hdf5-types", version = "0.2.0" }
14+
hdf5-types = { path = "../hdf5-types", version = "0.5.0" }
1515

1616
[dev-dependencies]
1717
compiletest_rs = { version = "0.3.18", features = ["stable"] }

hdf5-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdf5-sys"
3-
version = "0.2.0"
3+
version = "0.5.0"
44
authors = ["Ivan Smirnov <[email protected]>"]
55
keywords = ["hdf5"]
66
license = "MIT/Apache-2.0"

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.2.0"
3+
version = "0.5.0"
44
authors = ["Ivan Smirnov <[email protected]>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)