From fbd90b8f101481e5ff862909bb0b8ddf801c0476 Mon Sep 17 00:00:00 2001 From: DoHyung Kim Date: Fri, 17 Apr 2020 16:15:56 +0900 Subject: [PATCH] Bump up the version for release --- Cargo.toml | 6 +++--- macros/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ad4d47c..2631697 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "intertrait" -version = "0.1.0" +version = "0.1.1" authors = ["CodeChain Team "] license = "MIT OR Apache-2.0" description = "Allow for inter-trait casting" @@ -13,10 +13,10 @@ keywords = ["trait", "cast", "any"] [dependencies] once_cell = "1.3.1" linkme = "0.2.1" -intertrait-macros = { version = "=0.1.0", path = "macros" } +intertrait-macros = { version = "=0.1.1", path = "macros" } [dev-dependencies] -trybuild = "1.0.23" +trybuild = "1.0.25" doc-comment = "0.3.3" [workspace] diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 6bf2c1a..b212b7b 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "intertrait-macros" description = "Macros for intertrait crate, which allows for direct casting between trait objects" -version = "0.1.0" +version = "0.1.1" authors = ["CodeChain Team "] license = "MIT OR Apache-2.0" edition = "2018"