From c1a6a55aa29f96a52b31b0e8de19a7c2253dc55c Mon Sep 17 00:00:00 2001 From: CodeSandwich Date: Sat, 9 Feb 2019 01:38:43 +0100 Subject: [PATCH] Bump version to 0.6.0 --- CHANGELOG.md | 2 ++ Cargo.toml | 4 ++-- macros/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eea3acd..223f202 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 0.6.0 - 2019-09-02 +- Fix for rustc 1.31.0-nightly (ad6e5c003 2018-09-28) and newer (thank you @asomers and @rye!) ## 0.5.0 - 2018-07-17 - Fix for rustc 1.29.0-nightly (1ecf6929d 2018-07-16) and newer ## 0.4.1 - 2018-07-15 diff --git a/Cargo.toml b/Cargo.toml index 39b1412..d359096 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mocktopus" -version = "0.5.0" +version = "0.6.0" authors = ["CodeSandwich "] description = "Mocking framework for Rust" readme = "crates_io_readme.md" @@ -17,7 +17,7 @@ travis-ci = { repository = "CodeSandwich/Mocktopus" } doctest = false [dependencies] -mocktopus_macros = "=0.5.0" +mocktopus_macros = "=0.6.0" [workspace] members = ["macros"] diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 48e7a46..4d6ed0d 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mocktopus_macros" -version = "0.5.0" +version = "0.6.0" authors = ["CodeSandwich "] description = "Mocktopus procedural macros" readme = "crates_io_readme.md"