diff --git a/CHANGELOG.md b/CHANGELOG.md index 256e46c..c7ca1c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ + +## [](https://github.com/multiformats/rust-multihash/compare/v0.19.1...v0.19.2) (2023-10-23) + +### Dependency Updates + +- `multihash` 0.19.2 + - update `unsigned-varint` +- `codetable` 0.1.4 + - update `strobe` +- `multihash-derive` 0.9.1 + - update `multihash-derive-impl` +- `multihash-derive-impl` 0.9.1 + - remove `proc-macro-error` dependency + - update `synstructure` + - update `syn` to v2 + ## [](https://github.com/multiformats/rust-multihash/compare/v0.19.0...v0.19.1) (2023-09-06) ### Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index 1613750..1246a66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ name = "multihash" description = "Implementation of the multihash format" repository = "https://github.com/multiformats/rust-multihash" keywords = ["multihash", "ipfs"] -version = "0.19.1" +version = "0.19.2" authors = ["dignifiedquire ", "David Craven ", "Volker Mische "] license = "MIT" readme = "README.md" diff --git a/codetable/Cargo.toml b/codetable/Cargo.toml index 4ed06d2..03a4709 100644 --- a/codetable/Cargo.toml +++ b/codetable/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "multihash-codetable" description = "Default multihash code-table with cryptographically secure hash implementations" -version = "0.1.3" +version = "0.1.4" repository = "https://github.com/multiformats/rust-multihash" license = "MIT" edition = "2021" @@ -31,7 +31,7 @@ sha2 = { version = "0.10.0", default-features = false, optional = true } sha3 = { version = "0.10.0", default-features = false, optional = true } strobe-rs = { version = "0.10.0", default-features = false, optional = true } ripemd = { version = "0.1.1", default-features = false, optional = true } -multihash-derive = { version = "0.9.0", path = "../derive", default-features = false } +multihash-derive = { version = "0.9.1", path = "../derive", default-features = false } core2 = { version = "0.4.0", default-features = false } serde = { version = "1.0.158", features = ["derive"], default-features = false, optional = true } arbitrary = { version = "1.3.2", optional = true, features = ["derive"] } diff --git a/derive-impl/Cargo.toml b/derive-impl/Cargo.toml index e0bcfae..1cd7637 100644 --- a/derive-impl/Cargo.toml +++ b/derive-impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multihash-derive-impl" -version = "0.1.1" +version = "0.1.2" authors = ["David Craven "] edition = "2018" description = "Internal proc-macro crate for the MultihashDigest derive" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index befac85..1f0c135 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multihash-derive" -version = "0.9.0" +version = "0.9.1" edition = "2018" description = "Proc macro for deriving custom multihash tables." license = "MIT" @@ -11,8 +11,8 @@ default = ["std"] std = ["multihash/std", "core2/std"] [dependencies] -multihash-derive-impl = { version = "0.1.1", path = "../derive-impl" } -multihash = { version = "0.19.0", path = "../", default-features = false } +multihash-derive-impl = { version = "0.1.2", path = "../derive-impl" } +multihash = { version = "0.19.2", path = "../", default-features = false } core2 = { version = "0.4.0", default-features = false } [dev-dependencies]