diff --git a/.cz.toml b/.cz.toml index ddf65db..51f3af4 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.0" +version = "0.2.1" [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 b944a18..e79b223 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.2.1 (2022-01-07) + + +- ci: missed toolchain in bump +- fix: addressed clippy warnings +- ci: added toolchain back +- ci: added lint to main ci action +- ci: separate cargo releases from version bumping to allow for ci/doc commits to not fail actions +- ci: update cz rules for pre-1.0 +- ci: update cz toml version format + ## v0.2.0 (2022-01-07) ## v0.1.0 (2022-01-07) diff --git a/fatigue/Cargo.toml b/fatigue/Cargo.toml index 5d92c67..9c4e4dc 100644 --- a/fatigue/Cargo.toml +++ b/fatigue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fatigue" -version = "0.2.0" +version = "0.2.1" 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.0"} +libfatigue = { path = "../libfatigue", version = "0.2.1"} 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 a2eb60a..56fcf32 100644 --- a/libfatigue/Cargo.toml +++ b/libfatigue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfatigue" -version = "0.2.0" +version = "0.2.1" authors = ["Dylan Ross "] description = "an extensible load testing library" edition = "2018"