From 59853b3b0273191d5bf297dd3b43694d5e6a747b Mon Sep 17 00:00:00 2001 From: Nick Gerace Date: Mon, 26 Jun 2023 17:32:11 -0400 Subject: [PATCH] Update to 4.4.0 Signed-off-by: Nick Gerace --- CHANGELOG.md | 11 +++++++++-- Cargo.lock | 2 +- 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. + +## 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 diff --git a/Cargo.lock b/Cargo.lock index 7de4cd4..1ed8a4f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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 "]