diff --git a/ethereum-types/Cargo.toml b/ethereum-types/Cargo.toml index fa967e32..d09be930 100644 --- a/ethereum-types/Cargo.toml +++ b/ethereum-types/Cargo.toml @@ -13,9 +13,9 @@ ethbloom = { path = "../ethbloom", version = "0.14", optional = true, default-fe fixed-hash = { path = "../fixed-hash", version = "0.8", default-features = false, features = ["byteorder", "rustc-hex"] } 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-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.6", 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] diff --git a/primitive-types/CHANGELOG.md b/primitive-types/CHANGELOG.md index b0a1e799..4923232f 100644 --- a/primitive-types/CHANGELOG.md +++ b/primitive-types/CHANGELOG.md @@ -4,9 +4,7 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ -## [Unreleased] - -## [0.13.0] - 2024-09-11 +## [0.13.1] - 2024-09-11 - Updated `uint` to 0.10. [#859](https://github.com/paritytech/parity-common/pull/859) ## [0.12.2] - 2023-10-10 diff --git a/primitive-types/Cargo.toml b/primitive-types/Cargo.toml index 1bf2f4d4..2f419a32 100644 --- a/primitive-types/Cargo.toml +++ b/primitive-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "primitive-types" -version = "0.13.0" +version = "0.13.1" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" @@ -11,10 +11,10 @@ rust-version = "1.60.0" [dependencies] 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-num-traits = { version = "0.2.0", path = "impls/num-traits", default-features = false, optional = true } +uint = { version = "0.10", path = "../uint", default-features = false } +impl-serde = { version = "0.5", path = "impls/serde", default-features = false, optional = true } +impl-codec = { version = "0.6", path = "impls/codec", default-features = false, optional = true } +impl-num-traits = { version = "0.2", 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 } diff --git a/rlp-derive/Cargo.toml b/rlp-derive/Cargo.toml index 1a0967de..7b6e6d78 100644 --- a/rlp-derive/Cargo.toml +++ b/rlp-derive/Cargo.toml @@ -17,4 +17,4 @@ quote = "1.0.2" proc-macro2 = "1.0.8" [dev-dependencies] -rlp = { version = "0.6.0", path = "../rlp" } +rlp = { version = "0.6", path = "../rlp" }