Increment versions. (#30)

For `ethereum-types` and `fixed-hash`.
This commit is contained in:
Toralf Wittner 2018-04-11 09:34:33 +02:00 committed by Tomasz Drwięga
parent c85f72a42c
commit dfb17048cb
4 changed files with 4 additions and 4 deletions

View File

@ -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.2.0", path = "../fixed-hash" }
fixed-hash = { version = "0.2.1", path = "../fixed-hash" }
ethereum-types-serialize = { version = "0.2.1", path = "../serialize", optional = true }
serde = { version = "1.0", optional = true }

View File

@ -1,6 +1,6 @@
[package]
name = "ethereum-types"
version = "0.3.0"
version = "0.3.1"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
homepage = "https://github.com/paritytech/primitives"

View File

@ -1,6 +1,6 @@
[package]
name = "fixed-hash"
version = "0.2.0"
version = "0.2.1"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
homepage = "https://github.com/paritytech/primitives"

View File

@ -8,7 +8,7 @@ rustc_version = "0.2"
[dependencies]
crunchy = "0.1.5"
ethereum-types = { version = "0.3.0", path ="../ethereum-types", features = ["std", "heapsizeof"] }
ethereum-types = { version = "0.3.1", path ="../ethereum-types", features = ["std", "heapsizeof"] }
quickcheck = "0.6"
serde_json = "1.0"
uint = { path = "../uint" , features = ["impl_quickcheck_arbitrary"] }