diff --git a/.cz.toml b/.cz.toml index d03ee28..cd83bc6 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.4" +version = "0.2.5" [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 b04ed75..4681276 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.2.5 (2022-01-08) + + +- feat: calculate and display requests per second + ## 0.2.4 (2022-01-08) diff --git a/Cargo.lock b/Cargo.lock index d7c69ae..fe7dba8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -381,7 +381,7 @@ checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" [[package]] name = "fatigue" -version = "0.2.3" +version = "0.2.4" dependencies = [ "clap", "console", @@ -793,7 +793,7 @@ checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125" [[package]] name = "libfatigue" -version = "0.2.3" +version = "0.2.4" dependencies = [ "async-trait", "dashmap", diff --git a/fatigue/Cargo.toml b/fatigue/Cargo.toml index 447b7bf..e33b79e 100644 --- a/fatigue/Cargo.toml +++ b/fatigue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fatigue" -version = "0.2.4" +version = "0.2.5" authors = ["Dylan Ross "] edition = "2018" description = "an extensible load testing tool" @@ -16,7 +16,7 @@ console = "0.15.0" crossterm = "0.22.1" humantime = "2.1.0" itertools = "0.10.3" -libfatigue = { path = "../libfatigue", version = "0.2.4"} +libfatigue = { path = "../libfatigue", version = "0.2.5"} num-format = "0.4.0" prettytable-rs = "0.8.0" serde = "1.0.133" diff --git a/libfatigue/Cargo.toml b/libfatigue/Cargo.toml index 5433780..d737e8f 100644 --- a/libfatigue/Cargo.toml +++ b/libfatigue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfatigue" -version = "0.2.4" +version = "0.2.5" authors = ["Dylan Ross "] description = "an extensible load testing library" edition = "2018"