-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c47737e
commit 8d83080
Showing
5 changed files
with
61 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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] <[email protected]> | ||
- 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] <[email protected]> | ||
- 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] <[email protected]> | ||
- 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) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fatigue" | ||
version = "0.2.6" | ||
version = "0.2.7" | ||
authors = ["Dylan Ross <[email protected]>"] | ||
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "libfatigue" | ||
version = "0.2.6" | ||
version = "0.2.7" | ||
authors = ["Dylan Ross <[email protected]>"] | ||
description = "an extensible load testing library" | ||
edition = "2018" | ||
|