diff options
author | Nick Gerace <nickagerace@gmail.com> | 2023-02-05 23:13:04 -0500 |
---|---|---|
committer | Nick Gerace <nickagerace@gmail.com> | 2023-02-05 23:13:04 -0500 |
commit | 33073263dbe5e6fc1b9238e7056c0eb4899fff17 (patch) | |
tree | fbf5415eaeab01404c2eaf9085ce717332ce6b7d | |
parent | 5b8ddcb86fead6f0304b94610c1d7dae2c2120a7 (diff) | |
download | gfold-33073263dbe5e6fc1b9238e7056c0eb4899fff17.zip |
Update to 4.3.0
Signed-off-by: Nick Gerace <nickagerace@gmail.com>
-rw-r--r-- | CHANGELOG.md | 14 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | 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. --> +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 @@ -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"] } |