From d9677ed5e7fbc3e382d6f68d040baf4427e3707c Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Wed, 23 Oct 2024 06:59:41 -0700 Subject: [PATCH] chore: release patch versions of all crates - 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 --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- codetable/Cargo.toml | 4 ++-- derive-impl/Cargo.toml | 2 +- derive/Cargo.toml | 6 +++--- 5 files changed, 23 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 256e46cb..c7ca1c76 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 1613750b..1246a661 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 4ed06d21..03a47099 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 e0bcfae9..1cd7637f 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 befac851..1f0c1357 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]