Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release patch versions of all crates #373

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]>", "David Craven <[email protected]>", "Volker Mische <[email protected]>"]
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 <[email protected]>"]
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
Loading