Skip to content

Commit

Permalink
Bump version to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeSandwich committed Feb 13, 2019
1 parent 5872640 commit 1714611
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## 0.6.0 - 2019-09-02
## 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
- Accept inability to inject modules in separate files: remove tests and fix docs
- Upgrade project to Rust 2018
- Add mocking tricks to docs
## 0.6.0 - 2019-02-09
- 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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mocktopus"
version = "0.6.0"
version = "0.7.0"
authors = ["CodeSandwich <igor.zuk@protonmail.com>"]
description = "Mocking framework for Rust"
readme = "crates_io_readme.md"
Expand All @@ -18,7 +18,7 @@ travis-ci = { repository = "CodeSandwich/Mocktopus" }
doctest = false

[dependencies]
mocktopus_macros = { path = "macros" } #"=0.6.0"
mocktopus_macros = "=0.7.0"

[workspace]
members = ["macros"]
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mocktopus_macros"
version = "0.6.0"
version = "0.7.0"
authors = ["CodeSandwich <igor.zuk@protonmail.com>"]
description = "Mocktopus procedural macros"
readme = "crates_io_readme.md"
Expand Down

0 comments on commit 1714611

Please sign in to comment.