Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ jobs:
- name: use_msrv_lock_file
run: cp Cargo.lock.msrv Cargo.lock

- name: run_cargo_msrv_for_macro
run: cargo msrv verify --manifest-path ./parameterized-macro/Cargo.toml --output-format json -- cargo check --locked

- name: run_cargo_msrv_on_verify_failure_for_macro
if: ${{ failure() }}
run: cargo msrv find --manifest-path ./parameterized-macro/Cargo.toml --output-format json -- cargo check --locked

- name: run_cargo_msrv
run: cargo msrv verify --output-format json -- cargo check --locked

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ __unstable_square-brackets-old-error-message = ["parameterized-macro/__unstable_
members = ["parameterized-macro"]

[dependencies]
parameterized-macro = { path = "parameterized-macro", version = "2" }
parameterized-macro = { path = "parameterized-macro", version = "~3.0.0" }

[dev-dependencies]
tokio = { version = "1", features = ["full"] }
3 changes: 2 additions & 1 deletion parameterized-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parameterized-macro"
version = "2.0.0"
version = "3.0.0"
authors = ["Martijn Gribnau <garm@ilumeo.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -10,6 +10,7 @@ repository = "https://github.com/foresterre/parameterized"
readme = "readme.md"
keywords = ["parameterized", "attribute", "test", "unit-test", "junit"]
categories = ["development-tools", "development-tools::testing"]
rust-version = "1.68"

autotests = false

Expand Down
Loading