-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump versions * Update rlp changelog * adjust the date --------- Co-authored-by: ordian <[email protected]>
- Loading branch information
Showing
20 changed files
with
48 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
description = "Ethereum bloom filter" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -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 } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
|
@@ -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 } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
repository = "https://github.com/paritytech/parity-common" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
|
@@ -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 } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
|
@@ -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 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
|
@@ -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"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]>"] | ||
readme = "README.md" | ||
edition = "2021" | ||
|