diff --git a/CHANGELOG.md b/CHANGELOG.md index c76bd4d..313e879 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## v0.1.5 +* Be more explicit about stubbing vs mocking +* Fixed issue where faux was requiring MSRV 1.54.0 because of doctests + ## v0.1.4 * Make sure `faux` is using the latest version of `faux_macros` diff --git a/Cargo.toml b/Cargo.toml index ef4f672..6e7ea83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "faux" -version = "0.1.4" +version = "0.1.5" authors = ["Andres "] license = "MIT" description = "A library to mock structs" @@ -11,7 +11,7 @@ keywords = ["mock", "mocking", "test", "testing", "faux"] readme = "README.md" [dependencies] -faux_macros = { path = "faux_macros", version = "0.1.4" } +faux_macros = { path = "faux_macros", version = "0.1.5" } paste = "1.0.4" [dev-dependencies] diff --git a/faux_macros/Cargo.toml b/faux_macros/Cargo.toml index bb5925f..27795f7 100644 --- a/faux_macros/Cargo.toml +++ b/faux_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "faux_macros" -version = "0.1.4" +version = "0.1.5" authors = ["Andres "] edition = "2018" license = "MIT"