From 26659c55e6ff753db49bad95513ff0feefda079f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Biel?= Date: Thu, 21 Jul 2022 22:36:41 +0200 Subject: [PATCH] Bump version to 2.2.0 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- README.md | 2 +- crates/test-case-macros/Cargo.toml | 2 +- src/lib.rs | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78207ce..5ea1097 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.2.0 +### New features +* Support `ignore["reason"]` syntax (#102) + ## 2.1.0 ### New features * Support `matches_regex` complex test-case (requires `with-regex` feature) (#98) diff --git a/Cargo.toml b/Cargo.toml index e1e3b85..d0a917a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-case" -version = "2.1.0" +version = "2.2.0" edition = "2018" authors = ["Marcin Sas-Szymanski ", "Wojciech Polak ", "Łukasz Biel "] description = "Provides #[test_case(...)] procedural macro attribute for generating parametrized test cases easily" diff --git a/README.md b/README.md index 72cf45f..3826103 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Crate has to be added as a dependency to `Cargo.toml`: ```toml [dev-dependencies] -test-case = "2.1.0" +test-case = "2.2.0" ``` and imported to the scope of a block where it's being called diff --git a/crates/test-case-macros/Cargo.toml b/crates/test-case-macros/Cargo.toml index 93dda17..ce69ced 100644 --- a/crates/test-case-macros/Cargo.toml +++ b/crates/test-case-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-case-macros" -version = "2.1.0" +version = "2.2.0" edition = "2018" authors = ["Marcin Sas-Szymanski ", "Wojciech Polak ", "Łukasz Biel "] description = "Provides #[test_case(...)] procedural macro attribute for generating parametrized test cases easily" diff --git a/src/lib.rs b/src/lib.rs index 8937b20..9576b0d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ //! //! ```toml //! [dev-dependencies] -//! test-case = "2.1.0" +//! test-case = "2.2.0" //! ``` //! //! and imported to the scope of a block where it's being called