diff --git a/CHANGELOG.md b/CHANGELOG.md index 37f0188..b2079a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## V1.2.1 +* Disabled clippy warning when test-case was generating `assert_eq(bool, bool)` expression. + ## V1.2.0 ### New features * Allow usage of fully qualified attribute `#[test_case::test_case]` (thanks to @tomprince) diff --git a/Cargo.toml b/Cargo.toml index 7f5b110..1a1c4f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-case" -version = "1.2.0" +version = "1.2.1" edition = "2018" authors = ["Marcin Sas-Szymanski <marcin.sas-szymanski@anixe.pl>", "Wojciech Polak <frondeus@gmail.com>", "Ćukasz Biel <lukasz.p.biel@gmail.com>"] description = "Provides #[test_case(...)] procedural macro attribute for generating parametrized test cases easily" diff --git a/README.md b/README.md index 8261653..cf8470a 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ First of all you have to add this dependency to your `Cargo.toml`: ```toml [dev-dependencies] -test-case = "1.2.0" +test-case = "1.2.1" ``` Additionally, you have to import the procedural macro with `use` statement: diff --git a/src/lib.rs b/src/lib.rs index 1923134..75a21de 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,7 @@ //! //! ```toml //! [dev-dependencies] -//! test-case = "1.2.0" +//! test-case = "1.2.1" //! ``` //! //! Additionally, you have to import the procedural macro with `use` statement: