From 41149b79f9acc339895f5959819854deb8dd0bf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Drwi=C4=99ga?= Date: Thu, 15 Mar 2018 09:42:10 +0100 Subject: [PATCH] Bump versions. --- ethbloom/Cargo.toml | 4 ++-- ethereum-types/Cargo.toml | 8 ++++---- fixed-hash/Cargo.toml | 2 +- tests/Cargo.toml | 2 +- uint/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/ethbloom/Cargo.toml b/ethbloom/Cargo.toml index 313920c..a19380d 100644 --- a/ethbloom/Cargo.toml +++ b/ethbloom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethbloom" -version = "0.4.2" +version = "0.5.0" authors = ["Parity Technologies "] description = "Ethereum bloom filter" license = "MIT" @@ -11,7 +11,7 @@ repository = "https://github.com/paritytech/primitives" [dependencies] tiny-keccak = "1.4" crunchy = { version = "0.1.6", features = ["limit_256"] } -fixed-hash = { version = "0.1.3", path = "../fixed-hash" } +fixed-hash = { version = "0.2.0", path = "../fixed-hash" } ethereum-types-serialize = { version = "0.2.1", path = "../serialize", optional = true } serde = { version = "1.0", optional = true } diff --git a/ethereum-types/Cargo.toml b/ethereum-types/Cargo.toml index 05dbf4e..81f133a 100644 --- a/ethereum-types/Cargo.toml +++ b/ethereum-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethereum-types" -version = "0.2.3" +version = "0.3.0" authors = ["Parity Technologies "] license = "MIT" homepage = "https://github.com/paritytech/primitives" @@ -11,9 +11,9 @@ build = "build.rs" rustc_version = "0.2" [dependencies] -uint = { path = "../uint", version = "0.1.2" } -fixed-hash = { path = "../fixed-hash", version = "0.1.3" } -ethbloom = { path = "../ethbloom", version = "0.4.2" } +uint = { path = "../uint", version = "0.2" } +fixed-hash = { path = "../fixed-hash", version = "0.2" } +ethbloom = { path = "../ethbloom", version = "0.5.0" } crunchy = "0.1.5" ethereum-types-serialize = { version = "0.2.1", path = "../serialize", optional = true } serde = { version = "1.0", optional = true } diff --git a/fixed-hash/Cargo.toml b/fixed-hash/Cargo.toml index 0e19b1c..694b45c 100644 --- a/fixed-hash/Cargo.toml +++ b/fixed-hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fixed-hash" -version = "0.1.3" +version = "0.2.0" authors = ["Parity Technologies "] license = "MIT" homepage = "https://github.com/paritytech/primitives" diff --git a/tests/Cargo.toml b/tests/Cargo.toml index f45cbd1..11e40a4 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -8,7 +8,7 @@ rustc_version = "0.2" [dependencies] crunchy = "0.1.5" -ethereum-types = { version = "0.2.3", path ="../ethereum-types", features = ["std", "heapsizeof"] } +ethereum-types = { version = "0.3.0", path ="../ethereum-types", features = ["std", "heapsizeof"] } quickcheck = "0.6" serde_json = "1.0" uint = { path = "../uint" , features = ["impl_quickcheck_arbitrary"] } diff --git a/uint/Cargo.toml b/uint/Cargo.toml index f6982c3..3423df1 100644 --- a/uint/Cargo.toml +++ b/uint/Cargo.toml @@ -4,7 +4,7 @@ homepage = "http://parity.io" repository = "https://github.com/paritytech/primitives" license = "MIT/Apache-2.0" name = "uint" -version = "0.1.2" +version = "0.2.0" authors = ["Parity Technologies "] build = "build.rs"