Skip to content

Commit

Permalink
Bump version to 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-biel committed Jul 21, 2022
1 parent b8124c9 commit 72d2472
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.2.1
### Bugfixes
* Ensure `test-case` depends on correct version of `test-case-macros`

## 2.2.0
### New features
* Support `ignore["reason"]` syntax (#102)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-case"
version = "2.2.0"
version = "2.2.1"
edition = "2018"
authors = ["Marcin Sas-Szymanski <marcin.sas-szymanski@anixe.pl>", "Wojciech Polak <frondeus@gmail.com>", "Łukasz Biel <lukasz.p.biel@gmail.com>"]
description = "Provides #[test_case(...)] procedural macro attribute for generating parametrized test cases easily"
Expand All @@ -23,7 +23,7 @@ doctest = false
path = "src/lib.rs"

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

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Crate has to be added as a dependency to `Cargo.toml`:

```toml
[dev-dependencies]
test-case = "2.2.0"
test-case = "2.2.1"
```

and imported to the scope of a block where it's being called
Expand Down
2 changes: 1 addition & 1 deletion crates/test-case-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-case-macros"
version = "2.2.0"
version = "2.2.1"
edition = "2018"
authors = ["Marcin Sas-Szymanski <marcin.sas-szymanski@anixe.pl>", "Wojciech Polak <frondeus@gmail.com>", "Łukasz Biel <lukasz.p.biel@gmail.com>"]
description = "Provides #[test_case(...)] procedural macro attribute for generating parametrized test cases easily"
Expand Down
3 changes: 0 additions & 3 deletions scripts/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ nvim src/lib.rs

cargo readme > README.md

cargo publish -p test-case-macros --dry-run --allow-dirty
cargo publish -p test-case --dry-run --allow-dirty

git add .
git commit
git push origin
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//!
//! ```toml
//! [dev-dependencies]
//! test-case = "2.2.0"
//! test-case = "2.2.1"
//! ```
//!
//! and imported to the scope of a block where it's being called
Expand Down

0 comments on commit 72d2472

Please sign in to comment.