Skip to content

Commit 72d2472

Browse files
committed
Bump version to 2.2.1
1 parent b8124c9 commit 72d2472

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
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.1
4+
### Bugfixes
5+
* Ensure `test-case` depends on correct version of `test-case-macros`
6+
37
## 2.2.0
48
### New features
59
* Support `ignore["reason"]` syntax (#102)

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-case"
3-
version = "2.2.0"
3+
version = "2.2.1"
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"
@@ -23,7 +23,7 @@ doctest = false
2323
path = "src/lib.rs"
2424

2525
[dependencies]
26-
test-case-macros = { version = "2.2.0", path = "crates/test-case-macros", default-features = false }
26+
test-case-macros = { version = "2.2.1", path = "crates/test-case-macros", default-features = false }
2727
regex = { version = "1.5", optional = true }
2828

2929
[dev-dependencies]

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.0"
20+
test-case = "2.2.1"
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.0"
3+
version = "2.2.1"
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"

scripts/publish.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ nvim src/lib.rs
1919

2020
cargo readme > README.md
2121

22-
cargo publish -p test-case-macros --dry-run --allow-dirty
23-
cargo publish -p test-case --dry-run --allow-dirty
24-
2522
git add .
2623
git commit
2724
git push origin

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.0"
10+
//! test-case = "2.2.1"
1111
//! ```
1212
//!
1313
//! and imported to the scope of a block where it's being called

0 commit comments

Comments
 (0)