diff --git a/primitive-types/Cargo.toml b/primitive-types/Cargo.toml index 7c1a56d..c765b66 100644 --- a/primitive-types/Cargo.toml +++ b/primitive-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "primitive-types" -version = "0.2.0" +version = "0.2.1" authors = ["Parity Technologies "] license = "Apache-2.0/MIT" homepage = "https://github.com/paritytech/parity-common" @@ -10,7 +10,7 @@ description = "Primitive types shared by Ethereum and Substrate" fixed-hash = { version = "0.3", path = "../fixed-hash", default-features = false } uint = { version = "0.6", path = "../uint", default-features = false } impl-serde = { version = "0.1", path = "impls/serde", default-features = false, optional = true } -impl-codec = { version = "0.1", path = "impls/codec", default-features = false, optional = true } +impl-codec = { version = "0.2", path = "impls/codec", default-features = false, optional = true } impl-rlp = { version = "0.1", path = "impls/rlp", default-features = false, optional = true } [features] diff --git a/primitive-types/impls/codec/Cargo.toml b/primitive-types/impls/codec/Cargo.toml index a3cac29..d67a317 100644 --- a/primitive-types/impls/codec/Cargo.toml +++ b/primitive-types/impls/codec/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-codec" -version = "0.1.1" +version = "0.2.0" authors = ["Parity Technologies "] license = "Apache-2.0/MIT" homepage = "https://github.com/paritytech/parity-common"