Skip to content

Commit

Permalink
chore: release patch versions of all crates (#373)
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
Stebalien authored Oct 23, 2024
1 parent 0656cf2 commit 4c0ef52
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 7 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <dignifiedquire@gmail.com>", "David Craven <david@craven.ch>", "Volker Mische <volker.mische@gmail.com>"]
license = "MIT"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions codetable/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion derive-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "multihash-derive-impl"
version = "0.1.1"
version = "0.1.2"
authors = ["David Craven <david@craven.ch>"]
edition = "2018"
description = "Internal proc-macro crate for the MultihashDigest derive"
Expand Down
6 changes: 3 additions & 3 deletions derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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]
Expand Down

0 comments on commit 4c0ef52

Please sign in to comment.