Skip to content

Commit 17db57a

Browse files
committed
Bump version to 3.2.1
1 parent ca22d20 commit 17db57a

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

CHANGELOG.md

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

3+
## 3.2.1
4+
### Changes
5+
* Update `syn` dependency to 2.0
6+
* Ensure that `test-case` selects correct version of it's `core` and `macros` subcrates
7+
38
## 3.2.0
49
### New features
510
* Add `test_matrix` macro: generates test cases from Cartesian product of possible test function argument values (#128)

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 = "3.2.0"
3+
version = "3.2.1"
44
edition = "2021"
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"
@@ -24,7 +24,7 @@ doctest = false
2424
path = "src/lib.rs"
2525

2626
[dependencies]
27-
test-case-macros = { version = "3.2.0", path = "crates/test-case-macros", default-features = false }
27+
test-case-macros = { version = "3.2.1", path = "crates/test-case-macros", default-features = false }
2828
regex = { version = "1.5", optional = true }
2929

3030
[dev-dependencies]

README.md

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

1717
```toml
1818
[dev-dependencies]
19-
test-case = "3.2.0"
19+
test-case = "3.2.1"
2020
```
2121

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

crates/test-case-core/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-core"
3-
version = "3.2.0"
3+
version = "3.2.1"
44
edition = "2021"
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 core functionality for parsing #[test_case(...)] procedural macro attribute for generating parametrized test cases easily"

crates/test-case-macros/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-macros"
3-
version = "3.2.0"
3+
version = "3.2.1"
44
edition = "2021"
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"
@@ -27,4 +27,4 @@ proc-macro2 = { version = "1.0", features = [] }
2727
proc-macro-error = "1.0"
2828
quote = "1.0"
2929
syn = { version = "2.0", features = ["full", "extra-traits", "parsing"] }
30-
test-case-core = { version = "3.2", path = "../test-case-core", default-features = false }
30+
test-case-core = { version = "3.2.1", path = "../test-case-core", default-features = false }

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

0 commit comments

Comments
 (0)