Skip to content

Commit

Permalink
Release v0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
nrxus committed Aug 15, 2023
1 parent bc1235a commit 2694de8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "faux"
version = "0.1.9"
version = "0.1.10"
authors = ["Andres <andresnrx@gmail.com>"]
license = "MIT"
description = "A library to mock structs"
Expand Down
2 changes: 1 addition & 1 deletion faux_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "faux_macros"
version = "0.1.9"
version = "0.1.10"
authors = ["Andres <andresnrx@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down

0 comments on commit 2694de8

Please sign in to comment.