diff --git a/.cz.toml b/.cz.toml index 6341119..a571147 100644 --- a/.cz.toml +++ b/.cz.toml @@ -2,7 +2,7 @@ bump_message = "release $current_version → $new_version [skip ci]" name = "cz_customize" tag_format = "$major.$minor.$patch" -version = "0.2.9" +version = "0.2.10" [tool.commitizen.customize] bump_map = {feat = "PATCH", break = "MINOR", fix = "PATCH"} bump_pattern = "^(feat|fix|break)" diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d9b690..ba29f76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,146 @@ +## 0.2.10 (2023-03-17) + + +- feat: updated to the latest version of clap +- fix(ci): fixed cargo upgrade cmd again +- fix(ci): fix cmd for new cargo-edit version +- fix(ci): re-enable add-and-commit step +- chore(deps): bump serde_yaml from 0.9.13 to 0.9.19 (#105) +- Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.13 to 0.9.19. +
+Release notes +

Sourced from serde_yaml's releases.

+
+

0.9.19

+ +

0.9.18

+ +

0.9.17

+ +

0.9.16

+ +

0.9.15

+ +

0.9.14

+ +
+
+
+Commits + +
+
+- +[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_yaml&package-manager=cargo&previous-version=0.9.13&new-version=0.9.19)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) +- Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. +- [//]: # (dependabot-automerge-start) +[//]: # (dependabot-automerge-end) +- --- +-
+Dependabot commands and options +
+- You can trigger Dependabot actions by commenting on this PR: +- `@dependabot rebase` will rebase this PR +- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it +- `@dependabot merge` will merge this PR after your CI passes on it +- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it +- `@dependabot cancel merge` will cancel a previously requested merge and block automerging +- `@dependabot reopen` will reopen this PR if it is closed +- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually +- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) +- +
+- chore(deps): bump console from 0.15.2 to 0.15.5 (#106) +- Bumps [console](https://github.com/console-rs/console) from 0.15.2 to 0.15.5. +
+Changelog +

Sourced from console's changelog.

+
+

0.15.5

+

Enhancements

+ +

0.15.4

+

Enhancements

+ +

0.15.3

+

Enhancements

+ +
+
+
+Commits + +
+
+- +[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=console&package-manager=cargo&previous-version=0.15.2&new-version=0.15.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) +- Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. +- [//]: # (dependabot-automerge-start) +[//]: # (dependabot-automerge-end) +- --- +-
+Dependabot commands and options +
+- You can trigger Dependabot actions by commenting on this PR: +- `@dependabot rebase` will rebase this PR +- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it +- `@dependabot merge` will merge this PR after your CI passes on it +- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it +- `@dependabot cancel merge` will cancel a previously requested merge and block automerging +- `@dependabot reopen` will reopen this PR if it is closed +- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually +- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) +- +
+ ## 0.2.9 (2023-03-17) diff --git a/Cargo.lock b/Cargo.lock index 8ca7938..b507d62 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "fatigue" -version = "0.2.7" +version = "0.2.10" dependencies = [ "clap 4.1.9", "console", @@ -1041,7 +1041,7 @@ checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" [[package]] name = "libfatigue" -version = "0.2.7" +version = "0.2.10" dependencies = [ "async-trait", "csv", @@ -2177,7 +2177,7 @@ dependencies = [ [[package]] name = "test-api" -version = "0.2.7" +version = "0.2.10" dependencies = [ "rand", "rocket", diff --git a/examples/test-api/Cargo.toml b/examples/test-api/Cargo.toml index 1065518..b0b324f 100644 --- a/examples/test-api/Cargo.toml +++ b/examples/test-api/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" name = "test-api" publish = false -version = "0.2.7" +version = "0.2.10" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/fatigue/Cargo.toml b/fatigue/Cargo.toml index 6124c30..5475701 100644 --- a/fatigue/Cargo.toml +++ b/fatigue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fatigue" -version = "0.2.7" +version = "0.2.10" authors = ["Dylan Ross "] edition = "2018" description = "an extensible load testing tool" @@ -17,7 +17,7 @@ crossterm = "0.26.1" figment = { version = "0.10.8", features = ["env", "yaml"] } humantime = "2.1.0" itertools = "0.10.5" -libfatigue = { path = "../libfatigue", version = "0.2.7"} +libfatigue = { path = "../libfatigue", version = "0.2.10" } num-format = "0.4.0" prettytable-rs = "0.10.0" serde = "1.0.156" diff --git a/libfatigue/Cargo.toml b/libfatigue/Cargo.toml index 4f68b0a..5a1b5a1 100644 --- a/libfatigue/Cargo.toml +++ b/libfatigue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfatigue" -version = "0.2.7" +version = "0.2.10" authors = ["Dylan Ross "] description = "an extensible load testing library" edition = "2018"