From 9d1d9a0ecd33fee40bec5e78fcaf8f74a69302ce Mon Sep 17 00:00:00 2001 From: debris Date: Sun, 4 Feb 2018 12:53:35 +0100 Subject: [PATCH] next release --- README.md | 4 ++-- ethbloom/Cargo.toml | 4 ++-- ethereum-types/Cargo.toml | 10 +++++----- fixed-hash/Cargo.toml | 2 +- serialize/Cargo.toml | 2 +- uint/Cargo.toml | 4 ++-- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 4852ffb..58ce1f0 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ To specify a dependency, add to `Cargo.toml` ```toml [dependencies] -ethereum-types = "0.1" +ethereum-types = "0.2" ``` Little example @@ -21,7 +21,7 @@ fn main() { let mut val: U256 = 1023.into(); for _ in 0..200 { val = val * 2.into() } assert_eq!( - &format!("{}", val), + &format!("{}", val), "1643897619276947051879427220465009342380213662639797070513307648" ); } diff --git a/ethbloom/Cargo.toml b/ethbloom/Cargo.toml index 8c525bf..62048d9 100644 --- a/ethbloom/Cargo.toml +++ b/ethbloom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethbloom" -version = "0.4.1" +version = "0.4.2" authors = ["Parity Technologies "] description = "Ethereum bloom filter" license = "MIT" @@ -11,7 +11,7 @@ repository = "https://github.com/debris/ethbloom" [dependencies] tiny-keccak = "1.4" crunchy = { version = "0.1.6", features = ["limit_256"] } -fixed-hash = { version = "0.1.1", path = "../fixed-hash" } +fixed-hash = { version = "0.1.3", path = "../fixed-hash" } ethereum-types-serialize = { version = "0.2", path = "../serialize", optional = true } serde = { version = "1.0", optional = true } diff --git a/ethereum-types/Cargo.toml b/ethereum-types/Cargo.toml index 0ca5b3f..f2ac70b 100644 --- a/ethereum-types/Cargo.toml +++ b/ethereum-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethereum-types" -version = "0.2.1" +version = "0.2.2" authors = ["Parity Technologies "] license = "MIT" homepage = "https://github.com/paritytech/primitives" @@ -12,10 +12,10 @@ rustc_version = "0.2" [dependencies] uint = { path = "../uint", version = "0.1" } -fixed-hash = { path = "../fixed-hash", version = "0.1.1" } -ethbloom = { path = "../ethbloom", version = "0.4" } +fixed-hash = { path = "../fixed-hash", version = "0.1.3" } +ethbloom = { path = "../ethbloom", version = "0.4.2" } crunchy = "0.1.5" -ethereum-types-serialize = { version = "0.2", path = "../serialize", optional = true } +ethereum-types-serialize = { version = "0.2.1", path = "../serialize", optional = true } serde = { version = "1.0", optional = true } [features] @@ -23,4 +23,4 @@ default = ["std", "heapsizeof", "serialize"] std = ["uint/std", "fixed-hash/std", "ethbloom/std"] heapsizeof = ["uint/heapsizeof", "fixed-hash/heapsizeof", "ethbloom/heapsizeof"] serialize = ["std", "ethereum-types-serialize", "serde", "ethbloom/serialize"] -use_asm = ["uint/use_asm"] \ No newline at end of file +use_asm = ["uint/use_asm"] diff --git a/fixed-hash/Cargo.toml b/fixed-hash/Cargo.toml index a218d35..db1ef84 100644 --- a/fixed-hash/Cargo.toml +++ b/fixed-hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fixed-hash" -version = "0.1.2" +version = "0.1.3" authors = ["Parity Technologies "] license = "MIT" homepage = "https://github.com/paritytech/primitives" diff --git a/serialize/Cargo.toml b/serialize/Cargo.toml index 89c33f9..cb160dd 100644 --- a/serialize/Cargo.toml +++ b/serialize/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethereum-types-serialize" -version = "0.2.0" +version = "0.2.1" authors = ["Parity Technologies "] license = "MIT" homepage = "https://github.com/paritytech/primitives" diff --git a/uint/Cargo.toml b/uint/Cargo.toml index 8433f2a..5d5a5ce 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.1" +version = "0.1.2" authors = ["Parity Technologies "] build = "build.rs" @@ -13,7 +13,7 @@ rustc_version = "0.2" [dependencies] byteorder = { version = "1", default-features = false } -heapsize = { version = "0.4", optional = true } +heapsize = { version = "0.4.2", optional = true } rustc-hex = { version = "1.0", optional = true } [dev-dependencies]