Skip to content

Commit

Permalink
another missing bump (impl-codec) (#863)
Browse files Browse the repository at this point in the history
* bump impl-codec

* fix rlp changelog

* bump dep

* ethereum-types too

* ethbloom too
  • Loading branch information
ordian authored Sep 12, 2024
1 parent ab7a762 commit 7c701c6
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 11 deletions.
3 changes: 2 additions & 1 deletion ethbloom/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ The format is based on [Keep a Changelog].

## [Unreleased]

## [0.14.0] - 2024-09-11
## [0.14.1] - 2024-09-12
- Updated `impl-serde` to 0.5. [#859](https://github.com/paritytech/parity-common/pull/859)
- Updated `impl-codec` to 0.7. [#860](https://github.com/paritytech/parity-common/pull/860)

## [0.13.0] - 2022-09-20
- Updated `fixed-hash` to 0.8. [#680](https://github.com/paritytech/parity-common/pull/680)
Expand Down
4 changes: 2 additions & 2 deletions ethbloom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethbloom"
version = "0.14.0"
version = "0.14.1"
authors = ["Parity Technologies <[email protected]>"]
description = "Ethereum bloom filter"
license = "MIT OR Apache-2.0"
Expand All @@ -16,7 +16,7 @@ crunchy = { version = "0.2.2", default-features = false, features = ["limit_256"
fixed-hash = { path = "../fixed-hash", version = "0.8", default-features = false }
impl-serde = { path = "../primitive-types/impls/serde", version = "0.5", default-features = false, optional = true }
impl-rlp = { path = "../primitive-types/impls/rlp", version = "0.4", default-features = false, optional = true }
impl-codec = { version = "0.6.0", path = "../primitive-types/impls/codec", default-features = false, optional = true }
impl-codec = { version = "0.7.0", path = "../primitive-types/impls/codec", default-features = false, optional = true }
scale-info = { version = ">=1.0, <3", features = ["derive"], default-features = false, optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion ethereum-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog].

## [Unreleased]

## [0.15.0] - 2024-09-11
## [0.15.1] - 2024-09-12
- Updated `uint` to 0.10. [#859](https://github.com/paritytech/parity-common/pull/859)

## [0.14.1] - 2022-11-29
Expand Down
4 changes: 2 additions & 2 deletions ethereum-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethereum-types"
version = "0.15.0"
version = "0.15.1"
authors = ["Parity Technologies <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paritytech/parity-common"
Expand All @@ -15,7 +15,7 @@ uint-crate = { path = "../uint", package = "uint", version = "0.10", default-fea
primitive-types = { path = "../primitive-types", version = "0.13", features = ["byteorder", "rustc-hex"], default-features = false }
impl-serde = { path = "../primitive-types/impls/serde", version = "0.5.0", default-features = false, optional = true }
impl-rlp = { path = "../primitive-types/impls/rlp", version = "0.4", default-features = false, optional = true }
impl-codec = { version = "0.6.0", path = "../primitive-types/impls/codec", default-features = false, optional = true }
impl-codec = { version = "0.7.0", path = "../primitive-types/impls/codec", default-features = false, optional = true }
scale-info = { version = ">=1.0, <3", features = ["derive"], default-features = false, optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion primitive-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog].

## [Unreleased]

## [0.13.0] - 2024-09-11
## [0.13.1] - 2024-09-12
- Updated `uint` to 0.10. [#859](https://github.com/paritytech/parity-common/pull/859)

## [0.12.2] - 2023-10-10
Expand Down
4 changes: 2 additions & 2 deletions primitive-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "primitive-types"
version = "0.13.0"
version = "0.13.1"
authors = ["Parity Technologies <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paritytech/parity-common"
Expand All @@ -13,7 +13,7 @@ rust-version = "1.60.0"
fixed-hash = { version = "0.8", path = "../fixed-hash", default-features = false }
uint = { version = "0.10.0", path = "../uint", default-features = false }
impl-serde = { version = "0.5.0", path = "impls/serde", default-features = false, optional = true }
impl-codec = { version = "0.6.0", path = "impls/codec", default-features = false, optional = true }
impl-codec = { version = "0.7.0", path = "impls/codec", default-features = false, optional = true }
impl-num-traits = { version = "0.2.0", path = "impls/num-traits", default-features = false, optional = true }
impl-rlp = { version = "0.4", path = "impls/rlp", default-features = false, optional = true }
scale-info-crate = { package = "scale-info", version = ">=0.9, <3", features = ["derive"], default-features = false, optional = true }
Expand Down
4 changes: 4 additions & 0 deletions primitive-types/impls/codec/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog].

## [Unreleased]

## [0.7.0] - 2024-09-12
### Breaking
- Updated to `uint` 0.10. [#860](https://github.com/paritytech/parity-common/pull/860)

## [0.6.0] - 2022-02-04
### Breaking
- Migrated to 2021 edition, enforcing MSRV of `1.56.1`. [#601](https://github.com/paritytech/parity-common/pull/601)
Expand Down
2 changes: 1 addition & 1 deletion primitive-types/impls/codec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "impl-codec"
version = "0.6.0"
version = "0.7.0"
authors = ["Parity Technologies <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paritytech/parity-common"
Expand Down
2 changes: 1 addition & 1 deletion rlp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog].

## [0.6.1] - 2024-09-11
- Migrated to 2021 edition, enforcing MSRV of `1.56.1`. [#601](https://github.com/paritytech/parity-common/pull/601)
- Updated `rlp` to 0.2.0. [#860](https://github.com/paritytech/parity-common/pull/860)
- Updated `rlp-derive` to 0.2.0. [#860](https://github.com/paritytech/parity-common/pull/860)

## [0.5.2] - 2022-10-21
- Add optional `derive` feature. [#613](https://github.com/paritytech/parity-common/pull/613)
Expand Down

0 comments on commit 7c701c6

Please sign in to comment.