diff options
author | Nick Gerace <nickagerace@gmail.com> | 2023-06-26 17:32:11 -0400 |
---|---|---|
committer | Nick Gerace <nickagerace@gmail.com> | 2023-06-26 17:32:11 -0400 |
commit | 59853b3b0273191d5bf297dd3b43694d5e6a747b (patch) | |
tree | 7216d76cad45124d02b122eb31d941ec313cf60c | |
parent | 8a7674100aacf1c5e9d31ddee6ea5565439ff251 (diff) | |
download | gfold-59853b3b0273191d5bf297dd3b43694d5e6a747b.zip |
Update to 4.4.0
Signed-off-by: Nick Gerace <nickagerace@gmail.com>
-rw-r--r-- | CHANGELOG.md | 11 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | bin/gfold/Cargo.toml | 2 |
3 files changed, 11 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index c0c42e7..0007033 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,9 @@ For new changes prior to version 4.0.0, please see [CHANGELOG_PRE_V4](./docs/CHA ## Unreleased -<!-- The latest version contains all changes. --> +The latest version contains all changes. + +## 4.4.0 - 2023-06-26 ### Changed @@ -17,7 +19,12 @@ For new changes prior to version 4.0.0, please see [CHANGELOG_PRE_V4](./docs/CHA ### Notes -- Split gfold into two crates: a library and a binary +- Bump the minor version field instead of the patch field because the dependency tree has significantly changed + - Technically, the sole user-facing change is that the external dependencies have been bumped + - For context, `libgfold` was newly introduced and contains the majority of the original `gfold` source code +- Only run CI checks on merge +- Publish and use `libgfold` for the first time +- Split `gfold` into two crates: a library and a binary - Use cargo workspace dependencies ## 4.3.3 - 2023-04-07 @@ -319,7 +319,7 @@ dependencies = [ [[package]] name = "gfold" -version = "4.3.3" +version = "4.4.0" dependencies = [ "anyhow", "clap", diff --git a/bin/gfold/Cargo.toml b/bin/gfold/Cargo.toml index 65d83bc..d3905f1 100644 --- a/bin/gfold/Cargo.toml +++ b/bin/gfold/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gfold" -version = "4.3.3" +version = "4.4.0" edition = "2021" authors = ["Nick Gerace <nickagerace@gmail.com>"] |