From e725393670110299632fc59f306149f21e5527be Mon Sep 17 00:00:00 2001 From: David Palm Date: Thu, 27 Sep 2018 16:50:03 +0100 Subject: [PATCH] Revert "Prep for release of new versions" This reverts commit 453c64068d8a9912c0394eca94118cf103f967fc. --- hashdb/Cargo.toml | 2 +- memorydb/Cargo.toml | 12 +++++----- patricia_trie/Cargo.toml | 22 +++++++++---------- rlp/Cargo.toml | 2 +- test-support/keccak-hasher/Cargo.toml | 2 +- .../patricia-trie-ethereum/Cargo.toml | 10 ++++----- triehash/Cargo.toml | 2 +- 7 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hashdb/Cargo.toml b/hashdb/Cargo.toml index dd69904..a3a1441 100644 --- a/hashdb/Cargo.toml +++ b/hashdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hashdb" -version = "0.3.0-beta.0" +version = "0.3.0" authors = ["Parity Technologies "] description = "trait for hash-keyed databases." license = "GPL-3.0" diff --git a/memorydb/Cargo.toml b/memorydb/Cargo.toml index ea9e8d1..9749cee 100644 --- a/memorydb/Cargo.toml +++ b/memorydb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "memorydb" -version = "0.3.0-beta.0" +version = "0.3.0" authors = ["Parity Technologies "] description = "in-memory implementation of hashdb" repository = "https://github.com/paritytech/parity-common" @@ -8,12 +8,12 @@ license = "GPL-3.0" [dependencies] heapsize = "0.4" -hashdb = { path = "../hashdb" } -plain_hasher = { path = "../plain_hasher", default-features = false } -rlp = { path = "../rlp", default-features = false } +hashdb = { version = "0.3", path = "../hashdb" } +plain_hasher = { version = "0.2", path = "../plain_hasher", default-features = false } +rlp = { version = "0.3", path = "../rlp", default-features = false } [dev-dependencies] tiny-keccak = "1.4.2" ethereum-types = "0.4" -keccak-hasher = { path = "../test-support/keccak-hasher" } -keccak-hash = { path = "../keccak-hash" } +keccak-hasher = { version = "0.1", path = "../test-support/keccak-hasher" } +keccak-hash = { version = "0.1", path = "../keccak-hash" } diff --git a/patricia_trie/Cargo.toml b/patricia_trie/Cargo.toml index 2aee2ff..54edf0f 100644 --- a/patricia_trie/Cargo.toml +++ b/patricia_trie/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "patricia-trie" -version = "0.3.0-beta.0" +version = "0.3.0" authors = ["Parity Technologies "] description = "Merkle-Patricia Trie generic over key hasher and node encoding" repository = "https://github.com/paritytech/parity-common" @@ -10,17 +10,17 @@ license = "GPL-3.0" elastic-array = "0.10" log = "0.3" rand = "0.4" -hashdb = { path = "../hashdb" } -parity-bytes = { path = "../parity-bytes" } +hashdb = { version = "0.3", path = "../hashdb" } +parity-bytes = { version = "0.1", path = "../parity-bytes" } [dev-dependencies] env_logger = "0.5" ethereum-types = "0.4" -keccak-hash = { path = "../keccak-hash" } -memorydb = { path = "../memorydb", default-features = false } -rlp = { path = "../rlp", default-features = false } -trie-standardmap = { path = "../trie-standardmap", default-features = false } -triehash = { path = "../triehash", default-features = false } -parity-bytes = { path = "../parity-bytes" } -patricia-trie-ethereum = { path = "../test-support/patricia-trie-ethereum" } -keccak-hasher = { path = "../test-support/keccak-hasher" } +keccak-hash = { version = "0.1", path = "../keccak-hash" } +memorydb = { version = "0.3", path = "../memorydb", default-features = false } +rlp = { version = "0.3.0", path = "../rlp", default-features = false } +trie-standardmap = { version = "0.1", path = "../trie-standardmap", default-features = false } +triehash = { version = "0.3", path = "../triehash", default-features = false } +parity-bytes = { version = "0.1.0", path = "../parity-bytes" } +patricia-trie-ethereum = { version = "0.1", path = "../test-support/patricia-trie-ethereum" } +keccak-hasher = { version = "0.1", path = "../test-support/keccak-hasher" } diff --git a/rlp/Cargo.toml b/rlp/Cargo.toml index 736e472..892707e 100644 --- a/rlp/Cargo.toml +++ b/rlp/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "rlp" -version = "0.3.0-beta.0" description = "Recursive-length prefix encoding, decoding, and compression" repository = "https://github.com/paritytech/parity-common" license = "MIT/Apache-2.0" +version = "0.3.0" authors = ["Parity Technologies "] [dependencies] diff --git a/test-support/keccak-hasher/Cargo.toml b/test-support/keccak-hasher/Cargo.toml index 501079e..73988e3 100644 --- a/test-support/keccak-hasher/Cargo.toml +++ b/test-support/keccak-hasher/Cargo.toml @@ -9,5 +9,5 @@ license = "GPL-3.0" [dependencies] ethereum-types = "0.4" tiny-keccak = "1.4.2" -hashdb = { path = "../../hashdb" } +hashdb = { version = "0.3", path = "../../hashdb" } plain_hasher = { path = "../../plain_hasher" } diff --git a/test-support/patricia-trie-ethereum/Cargo.toml b/test-support/patricia-trie-ethereum/Cargo.toml index dd0f8e5..fa5640a 100644 --- a/test-support/patricia-trie-ethereum/Cargo.toml +++ b/test-support/patricia-trie-ethereum/Cargo.toml @@ -6,11 +6,11 @@ description = "Merkle-Patricia Trie (Ethereum Style)" license = "GPL-3.0" [dependencies] -patricia-trie = { path = "../../patricia_trie" } -keccak-hasher = { path = "../keccak-hasher" } -hashdb = { path = "../../hashdb" } -rlp = { path = "../../rlp" } -parity-bytes = { path = "../../parity-bytes" } +patricia-trie = { version = "0.3", path = "../../patricia_trie" } +keccak-hasher = { version = "0.1", path = "../keccak-hasher" } +hashdb = { version = "0.3", path = "../../hashdb" } +rlp = { version = "0.3", path = "../../rlp" } +parity-bytes = { version = "0.1", path = "../../parity-bytes" } ethereum-types = "0.4" elastic-array = "0.10" diff --git a/triehash/Cargo.toml b/triehash/Cargo.toml index 312f09a..be50218 100644 --- a/triehash/Cargo.toml +++ b/triehash/Cargo.toml @@ -7,7 +7,7 @@ repository = "https://github.com/paritytech/parity-common" license = "GPL-3.0" [dependencies] -hashdb = { path = "../hashdb", default-features = false } +hashdb = { version = "0.3", path = "../hashdb", default-features = false } rlp = { version = "0.3", path = "../rlp", default-features = false } [dev-dependencies]