diff --git a/.cz.toml b/.cz.toml index fa45955..d0584cb 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.2" +version = "0.2.3" [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 550eaae..9716df3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.2.3 (2022-01-08) + + +- fix: fixed a few non-async locks that should've been async + ## 0.2.2 (2022-01-07) diff --git a/fatigue/Cargo.toml b/fatigue/Cargo.toml index aeacfc0..6a0d1b1 100644 --- a/fatigue/Cargo.toml +++ b/fatigue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fatigue" -version = "0.2.2" +version = "0.2.3" authors = ["Dylan Ross "] edition = "2018" description = "an extensible load testing tool" @@ -15,7 +15,7 @@ clap = { version = "2.34.0", features = ["suggestions", "color", "wrap_help"] } console = "0.15.0" crossterm = "0.22.1" itertools = "0.10.3" -libfatigue = { path = "../libfatigue", version = "0.2.2"} +libfatigue = { path = "../libfatigue", version = "0.2.3"} num-format = "0.4.0" serde = "1.0.133" serde_json = "1.0.74" diff --git a/libfatigue/Cargo.toml b/libfatigue/Cargo.toml index 5c35b3d..a176aba 100644 --- a/libfatigue/Cargo.toml +++ b/libfatigue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfatigue" -version = "0.2.2" +version = "0.2.3" authors = ["Dylan Ross "] description = "an extensible load testing library" edition = "2018"