diff --git a/CHANGELOG.md b/CHANGELOG.md index 68e3df1..f7cc079 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.2.2 +### Bugfixes +* Use fully qualified `test` macro path to avoid conflicts in workspace (#105) + ## 2.2.1 ### Bugfixes * Ensure `test-case` depends on correct version of `test-case-macros` diff --git a/Cargo.toml b/Cargo.toml index 8e0a038..05868f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-case" -version = "2.2.1" +version = "2.2.2" 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 ef7ece9..1a20bb2 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.2.1" +test-case = "2.2.2" ``` 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 c5acb54..fa8f87b 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.2.1" +version = "2.2.2" 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 3c41099..cdcc994 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ //! //! ```toml //! [dev-dependencies] -//! test-case = "2.2.1" +//! test-case = "2.2.2" //! ``` //! //! and imported to the scope of a block where it's being called