Revert "Prep for release of new versions"

This reverts commit 453c64068d.
This commit is contained in:
David Palm 2018-09-27 16:50:03 +01:00
parent ee51ead594
commit e725393670
7 changed files with 26 additions and 26 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "hashdb"
version = "0.3.0-beta.0"
version = "0.3.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "trait for hash-keyed databases."
license = "GPL-3.0"

View File

@ -1,6 +1,6 @@
[package]
name = "memorydb"
version = "0.3.0-beta.0"
version = "0.3.0"
authors = ["Parity Technologies <admin@parity.io>"]
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" }

View File

@ -1,6 +1,6 @@
[package]
name = "patricia-trie"
version = "0.3.0-beta.0"
version = "0.3.0"
authors = ["Parity Technologies <admin@parity.io>"]
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" }

View File

@ -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 <admin@parity.io>"]
[dependencies]

View File

@ -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" }

View File

@ -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"

View File

@ -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]