From 33073263dbe5e6fc1b9238e7056c0eb4899fff17 Mon Sep 17 00:00:00 2001 From: Nick Gerace Date: Sun, 5 Feb 2023 23:13:04 -0500 Subject: [PATCH] Update to 4.3.0 Signed-off-by: Nick Gerace --- CHANGELOG.md | 14 ++++++++++++-- Cargo.lock | 2 +- crates/gfold/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e30200..e3223af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,16 +8,26 @@ For new changes prior to version 4.0.0, please see [CHANGELOG_PRE_V4](./docs/CHA ## Unreleased - +The latest version contains all changes. + +## 4.3.0 - 2023-02-05 ### Added -- Submodule information in the `json` display mode +- Add submodule information to the `json` display mode (i.e. `gfold -d json`) + - This information is not yet accessible in other display modes ### Changed - Bump dependencies +### Note + +- Add demo GIF to README +- Performed significant refactor to reduce the usage of "floating" functions + (i.e. ensure functions are members of unit structs at minimum) as well as + remove reliance on a single generic error enum + ## 4.2.0 - 2022-12-21 ### Changed diff --git a/Cargo.lock b/Cargo.lock index f17d04a..3d015f5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -259,7 +259,7 @@ dependencies = [ [[package]] name = "gfold" -version = "4.2.0" +version = "4.3.0" dependencies = [ "anyhow", "clap", diff --git a/crates/gfold/Cargo.toml b/crates/gfold/Cargo.toml index 31a387d..1b98ad0 100644 --- a/crates/gfold/Cargo.toml +++ b/crates/gfold/Cargo.toml @@ -10,7 +10,7 @@ readme = "../../README.md" repository = "https://github.com/nickgerace/gfold/" edition = "2021" -version = "4.2.0" +version = "4.3.0" [dependencies] anyhow = { version = "1.0", features = ["backtrace"] }