Skip to content

Commit 29db360

Browse files
committed
Bump version to v2.2.2
1 parent 2c05a1b commit 29db360

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.2.2
4+
### Bugfixes
5+
* Use fully qualified `test` macro path to avoid conflicts in workspace (#105)
6+
37
## 2.2.1
48
### Bugfixes
59
* Ensure `test-case` depends on correct version of `test-case-macros`

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-case"
3-
version = "2.2.1"
3+
version = "2.2.2"
44
edition = "2018"
55
authors = ["Marcin Sas-Szymanski <marcin.sas-szymanski@anixe.pl>", "Wojciech Polak <frondeus@gmail.com>", "Łukasz Biel <lukasz.p.biel@gmail.com>"]
66
description = "Provides #[test_case(...)] procedural macro attribute for generating parametrized test cases easily"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Crate has to be added as a dependency to `Cargo.toml`:
1717

1818
```toml
1919
[dev-dependencies]
20-
test-case = "2.2.1"
20+
test-case = "2.2.2"
2121
```
2222

2323
and imported to the scope of a block where it's being called

crates/test-case-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-case-macros"
3-
version = "2.2.1"
3+
version = "2.2.2"
44
edition = "2018"
55
authors = ["Marcin Sas-Szymanski <marcin.sas-szymanski@anixe.pl>", "Wojciech Polak <frondeus@gmail.com>", "Łukasz Biel <lukasz.p.biel@gmail.com>"]
66
description = "Provides #[test_case(...)] procedural macro attribute for generating parametrized test cases easily"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//!
88
//! ```toml
99
//! [dev-dependencies]
10-
//! test-case = "2.2.1"
10+
//! test-case = "2.2.2"
1111
//! ```
1212
//!
1313
//! and imported to the scope of a block where it's being called

0 commit comments

Comments
 (0)