From 2694de809d4fbbf6f45b4514e48f04df11167bef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Medina?= Date: Tue, 15 Aug 2023 16:58:55 -0700 Subject: [PATCH] Release v0.1.10 --- CHANGELOG.md | 13 ++++++++++++- Cargo.toml | 2 +- faux_macros/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f8196d..8219c23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # CHANGELOG -## NEXT +## v0.1.10 +* Fix issue where methods that returned a type with a name that + contains the name of the mocked struct would fail to compile. + * [test](/tests/return_self_method.rs) +* Properly mark MSRV as v1.58. + * This was accidentally bumped in a previous release. A test for + MSRV has been added to CI to prevent this happening in the future by + accident. Note that `faux` considers MSRV bumps as non-breaking but + we still try to keep it to a minimum and only to older rust + versions. + +## v0.1.9 * Allow `#[faux::methods]` to wrap functions that return the mocked struct wrapped in `Rc`, `Arc`, `Box`, `Result`, or `Option`. * [test](/tests/return_self_method.rs) diff --git a/Cargo.toml b/Cargo.toml index 2063792..b641104 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "faux" -version = "0.1.9" +version = "0.1.10" authors = ["Andres "] license = "MIT" description = "A library to mock structs" diff --git a/faux_macros/Cargo.toml b/faux_macros/Cargo.toml index 1516774..9085063 100644 --- a/faux_macros/Cargo.toml +++ b/faux_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "faux_macros" -version = "0.1.9" +version = "0.1.10" authors = ["Andres "] edition = "2021" license = "MIT"