Skip to content

Commit

Permalink
Bump versions (#860)
Browse files Browse the repository at this point in the history
* Bump versions

* Update rlp changelog

* adjust the date

---------

Co-authored-by: ordian <write@reusable.software>
  • Loading branch information
pgherveou and ordian authored Sep 11, 2024
1 parent 0db43ee commit 63c5afb
Show file tree
Hide file tree
Showing 20 changed files with 48 additions and 34 deletions.
3 changes: 3 additions & 0 deletions ethbloom/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog].

## [Unreleased]

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

## [0.13.0] - 2022-09-20
- Updated `fixed-hash` to 0.8. [#680](https://github.com/paritytech/parity-common/pull/680)

Expand Down
6 changes: 3 additions & 3 deletions ethbloom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethbloom"
version = "0.13.0"
version = "0.14.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Ethereum bloom filter"
license = "MIT OR Apache-2.0"
Expand All @@ -14,8 +14,8 @@ rust-version = "1.56.1"
tiny-keccak = { version = "2.0", features = ["keccak"] }
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.4", default-features = false, optional = true }
impl-rlp = { path = "../primitive-types/impls/rlp", version = "0.3", default-features = false, optional = true }
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 }
scale-info = { version = ">=1.0, <3", features = ["derive"], default-features = false, optional = true }

Expand Down
3 changes: 2 additions & 1 deletion ethereum-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ The format is based on [Keep a Changelog].
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]
### Breaking

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

## [0.14.1] - 2022-11-29
Expand Down
12 changes: 6 additions & 6 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.14.1"
version = "0.15.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paritytech/parity-common"
Expand All @@ -9,12 +9,12 @@ edition = "2021"
rust-version = "1.60.0"

[dependencies]
ethbloom = { path = "../ethbloom", version = "0.13", optional = true, default-features = false }
ethbloom = { path = "../ethbloom", version = "0.14", optional = true, default-features = false }
fixed-hash = { path = "../fixed-hash", version = "0.8", default-features = false, features = ["byteorder", "rustc-hex"] }
uint-crate = { path = "../uint", package = "uint", version = "0.9", default-features = false }
primitive-types = { path = "../primitive-types", version = "0.12", features = ["byteorder", "rustc-hex"], default-features = false }
impl-serde = { path = "../primitive-types/impls/serde", version = "0.4.0", default-features = false, optional = true }
impl-rlp = { path = "../primitive-types/impls/rlp", version = "0.3", default-features = false, optional = true }
uint-crate = { path = "../uint", package = "uint", version = "0.10", default-features = false }
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 }
scale-info = { version = ">=1.0, <3", features = ["derive"], default-features = false, optional = true }

Expand Down
5 changes: 4 additions & 1 deletion keccak-hash/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ The format is based on [Keep a Changelog].

## [Unreleased]

## [0.12.0] - 2022-09-20
## [0.11.0] - 2024-09-11
- Updated `primitive-types` to 0.13. [#859](https://github.com/paritytech/parity-common/pull/859)

## [0.10.0] - 2022-09-20
### Breaking
- Updated `parity-util-mem` to 0.12. [#680](https://github.com/paritytech/parity-common/pull/680)

Expand Down
4 changes: 2 additions & 2 deletions keccak-hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "keccak-hash"
version = "0.10.0"
version = "0.11.0"
description = "`keccak-hash` is a set of utility functions to facilitate working with Keccak hashes (256/512 bits long)."
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/parity-common"
Expand All @@ -11,7 +11,7 @@ rust-version = "1.56.1"

[dependencies]
tiny-keccak = { version = "2.0", features = ["keccak"] }
primitive-types = { path = "../primitive-types", version = "0.12", default-features = false }
primitive-types = { path = "../primitive-types", version = "0.13", default-features = false }

[dev-dependencies]
tempfile = "3.1.0"
Expand Down
3 changes: 2 additions & 1 deletion primitive-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ The format is based on [Keep a Changelog].
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]
### Breaking

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

## [0.12.2] - 2023-10-10
Expand Down
10 changes: 5 additions & 5 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.12.2"
version = "0.13.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paritytech/parity-common"
Expand All @@ -11,11 +11,11 @@ rust-version = "1.60.0"

[dependencies]
fixed-hash = { version = "0.8", path = "../fixed-hash", default-features = false }
uint = { version = "0.9.5", path = "../uint", default-features = false }
impl-serde = { version = "0.4.0", path = "impls/serde", default-features = false, optional = true }
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-num-traits = { version = "0.1.0", path = "impls/num-traits", default-features = false, optional = true }
impl-rlp = { version = "0.3", path = "impls/rlp", 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 }
schemars = { version = ">=0.8.12", default-features = true, optional = true }

Expand Down
3 changes: 3 additions & 0 deletions primitive-types/impls/num-traits/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog].

## [Unreleased]

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

## [0.1.2] - 2023-02-01
- Added `checked_*` trait impls. [#716](https://github.com/paritytech/parity-common/pull/716)
- Migrated to 2021 edition, enforcing MSRV of `1.56.1`. [#601](https://github.com/paritytech/parity-common/pull/601)
Expand Down
4 changes: 2 additions & 2 deletions primitive-types/impls/num-traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "impl-num-traits"
version = "0.1.2"
version = "0.2.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paritytech/parity-common"
Expand All @@ -11,4 +11,4 @@ rust-version = "1.56.1"
[dependencies]
num-traits = { version = "0.2", default-features = false }
integer-sqrt = "0.1"
uint = { version = "0.9.5", path = "../../../uint", default-features = false }
uint = { version = "0.10.0", path = "../../../uint", default-features = false }
3 changes: 2 additions & 1 deletion primitive-types/impls/rlp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

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

## [0.3.0] - 2021-01-05
Expand Down
4 changes: 2 additions & 2 deletions primitive-types/impls/rlp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "impl-rlp"
version = "0.3.0"
version = "0.4.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paritytech/parity-common"
Expand All @@ -9,7 +9,7 @@ edition = "2021"
rust-version = "1.56.1"

[dependencies]
rlp = { version = "0.5", path = "../../../rlp", default-features = false }
rlp = { version = "0.6", path = "../../../rlp", default-features = false }

[features]
default = ["std"]
Expand Down
3 changes: 2 additions & 1 deletion primitive-types/impls/serde/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ The format is based on [Keep a Changelog].
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]
### Breaking

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

## [0.4.0] - 2022-09-02
Expand Down
4 changes: 2 additions & 2 deletions primitive-types/impls/serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "impl-serde"
version = "0.4.0"
version = "0.5.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paritytech/parity-common"
Expand All @@ -19,7 +19,7 @@ serde = { version = "1.0.101", default-features = false, features = ["alloc"] }
criterion = "0.5.1"
serde_derive = "1.0.101"
serde_json = "1.0.41"
uint = { version = "0.9.5", path = "../../../uint" }
uint = { version = "0.10.0", path = "../../../uint" }

[[bench]]
name = "impl_serde"
Expand Down
2 changes: 1 addition & 1 deletion rlp-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

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

## [0.1.0] - 2020-02-13
Expand Down
2 changes: 1 addition & 1 deletion rlp-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ quote = "1.0.2"
proc-macro2 = "1.0.8"

[dev-dependencies]
rlp = { version = "0.5.0", path = "../rlp" }
rlp = { version = "0.6.0", path = "../rlp" }
2 changes: 1 addition & 1 deletion rlp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]
## [0.6.0] - 2024-09-11
- Migrated to 2021 edition, enforcing MSRV of `1.56.1`. [#601](https://github.com/paritytech/parity-common/pull/601)

## [0.5.2] - 2022-10-21
Expand Down
4 changes: 2 additions & 2 deletions rlp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rlp"
version = "0.5.2"
version = "0.6.0"
description = "Recursive-length prefix encoding, decoding, and compression"
repository = "https://github.com/paritytech/parity-common"
license = "MIT OR Apache-2.0"
Expand All @@ -16,7 +16,7 @@ rlp-derive = { version = "0.1", path = "../rlp-derive", optional = true }
[dev-dependencies]
criterion = "0.5.1"
hex-literal = "0.4.1"
primitive-types = { path = "../primitive-types", version = "0.12", features = ["impl-rlp"] }
primitive-types = { path = "../primitive-types", version = "0.13", features = ["impl-rlp"] }

[features]
default = ["std"]
Expand Down
3 changes: 2 additions & 1 deletion uint/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ The format is based on [Keep a Changelog].
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]
### Breaking

## [0.10.0] - 2024-09-11
- Removed From<[u8; n]> conversions, renamed `to_big_endian` / `to_little_endian` to write_as_*, and made them return byte arrays. [#859](https://github.com/paritytech/parity-common/pull/859)

## [0.9.5] - 2022-11-29
Expand Down
2 changes: 1 addition & 1 deletion uint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ homepage = "http://parity.io"
repository = "https://github.com/paritytech/parity-common"
license = "MIT OR Apache-2.0"
name = "uint"
version = "0.9.5"
version = "0.10.0"
authors = ["Parity Technologies <admin@parity.io>"]
readme = "README.md"
edition = "2021"
Expand Down

0 comments on commit 63c5afb

Please sign in to comment.