Skip to content

Commit ea03c58

Browse files
committed
Bump version to 3.1.0
1 parent fa1c648 commit ea03c58

File tree

8 files changed

+14
-5
lines changed

8 files changed

+14
-5
lines changed

CHANGELOG.md

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

3+
## 3.1.0
4+
### New features
5+
* Copy attribute span to generated test functions so that IDEs recognize them properly as individual tests
6+
7+
### Changes
8+
* Added LICENSE file to child crates
9+
310
## 3.0.0
411

512
[IMPORTANT] Starting with 3.0 release we are changing `test-case` MSRV policy to support only 3 latest stable releases.

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 = "3.0.0"
3+
version = "3.1.0"
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"

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.0.0"
19+
test-case = "3.1.0"
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.0.0"
3+
version = "3.1.0"
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-core/LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../LICENSE

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 = "3.0.0"
3+
version = "3.1.0"
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"

crates/test-case-macros/LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../LICENSE

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

0 commit comments

Comments
 (0)