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 16, 2023
1 parent bc1235a commit 6abf9c0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 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
4 changes: 2 additions & 2 deletions 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 All @@ -12,7 +12,7 @@ readme = "README.md"
rust-version = "1.58"

[dependencies]
faux_macros = { path = "faux_macros", version = "0.1.8" }
faux_macros = { path = "faux_macros", version = "0.1.10" }
paste = "1.0.4"

[dev-dependencies]
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 6abf9c0

Please sign in to comment.