From 27f82d64c94483b0b0d0a27a64d202b7e47ef940 Mon Sep 17 00:00:00 2001 From: pdylanross Date: Fri, 17 Mar 2023 03:42:36 +0000 Subject: [PATCH] [skip ci] release: 0.2.11 --- .cz.toml | 2 +- CHANGELOG.md | 65 ++++++++++++++++++++++++++++++++++++ Cargo.lock | 6 ++-- examples/test-api/Cargo.toml | 2 +- fatigue/Cargo.toml | 4 +-- libfatigue/Cargo.toml | 2 +- 6 files changed, 73 insertions(+), 8 deletions(-) diff --git a/.cz.toml b/.cz.toml index a571147..60fd2f0 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.10" +version = "0.2.11" [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 ba29f76..593934e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,68 @@ +## 0.2.11 (2023-03-17) + + +- fix(ci): kodiak config to fix dependabot PRs +- chore: bump num-format from 0.4.0 to 0.4.4 (#108) +- Bumps [num-format](https://github.com/bcmyers/num-format) from 0.4.0 to 0.4.4. +
+Changelog +

Sourced from num-format's changelog.

+
+

0.4.3 (2022-10-09)

+
    +
  • Add github actions CI
  • +
  • Fix a few clippy lints
  • +
+

0.4.2 (2022-10-09)

+ +
+
+
+Commits + +
+
+- +[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=num-format&package-manager=cargo&previous-version=0.4.0&new-version=0.4.4)](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.10 (2023-03-17) diff --git a/Cargo.lock b/Cargo.lock index 32bce8a..5d3d2cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -533,7 +533,7 @@ dependencies = [ [[package]] name = "fatigue" -version = "0.2.10" +version = "0.2.11" dependencies = [ "clap 4.1.9", "console", @@ -1038,7 +1038,7 @@ checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" [[package]] name = "libfatigue" -version = "0.2.10" +version = "0.2.11" dependencies = [ "async-trait", "csv", @@ -2168,7 +2168,7 @@ dependencies = [ [[package]] name = "test-api" -version = "0.2.10" +version = "0.2.11" dependencies = [ "rand", "rocket", diff --git a/examples/test-api/Cargo.toml b/examples/test-api/Cargo.toml index b0b324f..72f2bac 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.10" +version = "0.2.11" # 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 c96776c..714e4b1 100644 --- a/fatigue/Cargo.toml +++ b/fatigue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fatigue" -version = "0.2.10" +version = "0.2.11" 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.10" } +libfatigue = { path = "../libfatigue", version = "0.2.11" } num-format = "0.4.4" prettytable-rs = "0.10.0" serde = "1.0.156" diff --git a/libfatigue/Cargo.toml b/libfatigue/Cargo.toml index 5a1b5a1..cd896d3 100644 --- a/libfatigue/Cargo.toml +++ b/libfatigue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfatigue" -version = "0.2.10" +version = "0.2.11" authors = ["Dylan Ross "] description = "an extensible load testing library" edition = "2018"