From 8d8308040abe3b5a0053be39ae64319c0d05757c Mon Sep 17 00:00:00 2001 From: "kodiakhq[bot]" Date: Wed, 26 Jan 2022 04:23:45 +0000 Subject: [PATCH] Release 0.2.7 [skip ci] --- .cz.toml | 2 +- CHANGELOG.md | 56 ++++++++++++++++++++++++++++++++++++ examples/test-api/Cargo.toml | 2 +- fatigue/Cargo.toml | 4 +-- libfatigue/Cargo.toml | 2 +- 5 files changed, 61 insertions(+), 5 deletions(-) diff --git a/.cz.toml b/.cz.toml index 5a5af98..51a2f3a 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.6" +version = "0.2.7" [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 fa984d5..21a57bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,59 @@ +## 0.2.7 (2022-01-26) + + +- fix: added default-members to workspace to prevent publishing the test api +- chore: re-ran cargo sort +- chore: ran cargo sort +- feat: added environment variable overrides +- chore(deps): bump reqwest from 0.11.8 to 0.11.9 +- Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.11.8 to 0.11.9. +- [Release notes](https://github.com/seanmonstar/reqwest/releases) +- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) +- [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.8...v0.11.9) +- --- +updated-dependencies: +- dependency-name: reqwest + dependency-type: direct:production + update-type: version-update:semver-patch +... +- Signed-off-by: dependabot[bot] +- chore(deps): bump serde_json from 1.0.74 to 1.0.78 +- Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.74 to 1.0.78. +- [Release notes](https://github.com/serde-rs/json/releases) +- [Commits](https://github.com/serde-rs/json/compare/v1.0.74...v1.0.78) +- --- +updated-dependencies: +- dependency-name: serde_json + dependency-type: direct:production + update-type: version-update:semver-patch +... +- Signed-off-by: dependabot[bot] +- ci: dont bump on dependabot updates +- ci(revert): move kodiak toml to repo root +- This reverts commit 86da4fd831202456e747d07fcf709d12b0fc5fea. +- ci: move kodiak toml to repo root +- ci: add doc and ci to cz schema pattern +- ci: update kodiak config +- ci: update cz schema validation to allow for scopes +- chore(deps): bump serde from 1.0.133 to 1.0.135 +- Bumps [serde](https://github.com/serde-rs/serde) from 1.0.133 to 1.0.135. +- [Release notes](https://github.com/serde-rs/serde/releases) +- [Commits](https://github.com/serde-rs/serde/compare/v1.0.133...v1.0.135) +- --- +updated-dependencies: +- dependency-name: serde + dependency-type: direct:production + update-type: version-update:semver-patch +... +- Signed-off-by: dependabot[bot] +- doc: update intro sentence +- doc: fixed a weird sentence +- doc: first pass on readme +- added contributing guide (thanks atom for the baseline) +added code_of_conduct (thanks contributor covenant) +added bug and issue templates (thanks rust & atom for the baselines) +- ci: split publish into two discrete steps to avoid weird caching issues + ## 0.2.6 (2022-01-11) diff --git a/examples/test-api/Cargo.toml b/examples/test-api/Cargo.toml index 20253ee..1110f75 100644 --- a/examples/test-api/Cargo.toml +++ b/examples/test-api/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "test-api" -version = "0.1.0" +version = "0.2.7" # 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 b5058d3..a1809cb 100644 --- a/fatigue/Cargo.toml +++ b/fatigue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fatigue" -version = "0.2.6" +version = "0.2.7" authors = ["Dylan Ross "] edition = "2018" description = "an extensible load testing tool" @@ -17,7 +17,7 @@ crossterm = "0.22.1" figment = { version = "0.10.6", features = ["env", "yaml"] } humantime = "2.1.0" itertools = "0.10.3" -libfatigue = { path = "../libfatigue", version = "0.2.6" } +libfatigue = { path = "../libfatigue", version = "0.2.7"} num-format = "0.4.0" prettytable-rs = "0.8.0" serde = "1.0.135" diff --git a/libfatigue/Cargo.toml b/libfatigue/Cargo.toml index caa914f..c10627f 100644 --- a/libfatigue/Cargo.toml +++ b/libfatigue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfatigue" -version = "0.2.6" +version = "0.2.7" authors = ["Dylan Ross "] description = "an extensible load testing library" edition = "2018"