From 30f15bb3387faf40f519dd56a5768cb3d3fe3638 Mon Sep 17 00:00:00 2001 From: debris Date: Wed, 24 Jan 2018 10:54:40 +0100 Subject: [PATCH] bump versions --- ethbloom/Cargo.toml | 4 ++-- ethereum-types/Cargo.toml | 6 +++--- serialize/Cargo.toml | 5 ++++- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/ethbloom/Cargo.toml b/ethbloom/Cargo.toml index 882b2f0..4d8b01d 100644 --- a/ethbloom/Cargo.toml +++ b/ethbloom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethbloom" -version = "0.3.0" +version = "0.4.0" authors = ["Parity Technologies "] description = "Ethereum bloom filter" license = "MIT" @@ -12,7 +12,7 @@ repository = "https://github.com/debris/ethbloom" tiny-keccak = "1.4" crunchy = { version = "0.1.6", features = ["limit_256"] } fixed-hash = { version = "0.1.1", path = "../fixed-hash" } -ethereum-types-serialize = { version = "0.1", path = "../serialize", optional = true } +ethereum-types-serialize = { version = "0.2", path = "../serialize", optional = true } serde = { version = "1.0", optional = true } [dev-dependencies] diff --git a/ethereum-types/Cargo.toml b/ethereum-types/Cargo.toml index 18583c4..33ea15d 100644 --- a/ethereum-types/Cargo.toml +++ b/ethereum-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethereum-types" -version = "0.1.4" +version = "0.2.0" authors = ["Parity Technologies "] license = "MIT" homepage = "https://github.com/paritytech/primitives" @@ -12,9 +12,9 @@ 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.3" } +ethbloom = { path = "../ethbloom", version = "0.4" } crunchy = "0.1.5" -ethereum-types-serialize = { version = "0.1", path = "../serialize", optional = true } +ethereum-types-serialize = { version = "0.2", path = "../serialize", optional = true } serde = { version = "1.0", optional = true } [features] diff --git a/serialize/Cargo.toml b/serialize/Cargo.toml index 7d9ce5c..90f59c4 100644 --- a/serialize/Cargo.toml +++ b/serialize/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "ethereum-types-serialize" -version = "0.1.0" +version = "0.2.0" authors = ["Parity Technologies "] +license = "MIT" +homepage = "https://github.com/paritytech/primitives" +description = "Ethereum types" [dependencies] serde = "1.0"