From a146d0215d60bc10a297943071a55f5747a8c31c Mon Sep 17 00:00:00 2001 From: CodeSandwich Date: Fri, 24 May 2019 00:08:06 +0200 Subject: [PATCH] Bump version to 0.7.1 --- CHANGELOG.md | 2 ++ Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4908817..768808d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 0.7.1 - 2019-05-24 +- Add function for clearing all mocks (thank you @clinedome-work!) ## 0.7.0 - 2019-02-13 - Allow mock closures to call mockable and mocked functions and to create mocks - Make functions not mocked during execution of their mock closures to prevent recursive calls diff --git a/Cargo.toml b/Cargo.toml index b236624..7b887c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mocktopus" -version = "0.7.0" +version = "0.7.1" authors = ["CodeSandwich "] description = "Mocking framework for Rust" readme = "crates_io_readme.md" @@ -18,7 +18,7 @@ travis-ci = { repository = "CodeSandwich/Mocktopus" } doctest = false [dependencies] -mocktopus_macros = { path = "macros" } #"=0.7.0" +mocktopus_macros = "=0.7.0" [workspace] members = ["macros"]