From de3329a160770b7b54990bfa811f0f7afa9d7494 Mon Sep 17 00:00:00 2001 From: thiolliere Date: Fri, 25 Jan 2019 12:13:05 +0100 Subject: [PATCH] update impl-codec and update primitive-types (#101) It is a minor update of primitive-types because it was meants to be in. Then I publish primitive-types:2.1 and yank 2.0 --- primitive-types/Cargo.toml | 4 ++-- primitive-types/impls/codec/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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"