From f1c0887e52cba5c464dd1de0bff14c4ae4f5287f Mon Sep 17 00:00:00 2001 From: Nick Gerace Date: Sat, 23 Dec 2023 23:25:59 -0500 Subject: [PATCH] Update gfold to 4.4.1 Signed-off-by: Nick Gerace --- CHANGELOG.md | 4 +++- Cargo.lock | 2 +- bin/gfold/Cargo.toml | 4 ++-- docs/RELEASE.md | 16 ++++++++-------- 4 files changed, 14 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b6ed76..32302d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,9 @@ ## Unreleased - +The latest version contains all changes. + +## 4.4.1 - 2023-12-23 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 2d9941b..5b9e337 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -288,7 +288,7 @@ dependencies = [ [[package]] name = "gfold" -version = "4.4.0" +version = "4.4.1" dependencies = [ "anyhow", "clap", diff --git a/bin/gfold/Cargo.toml b/bin/gfold/Cargo.toml index d3905f1..1dad869 100644 --- a/bin/gfold/Cargo.toml +++ b/bin/gfold/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gfold" -version = "4.4.0" +version = "4.4.1" edition = "2021" authors = ["Nick Gerace "] @@ -13,7 +13,7 @@ readme = "../../README.md" repository = "https://github.com/nickgerace/gfold/" [dependencies] -libgfold = { version = "0.1.1", path = "../../lib/libgfold" } +libgfold = { version = "0.1.2", path = "../../lib/libgfold" } anyhow = { workspace = true } clap = { workspace = true } diff --git a/docs/RELEASE.md b/docs/RELEASE.md index b3b363b..8af19ee 100644 --- a/docs/RELEASE.md +++ b/docs/RELEASE.md @@ -2,6 +2,14 @@ This document contains all information related to release. +## Versioning Scheme + +This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +Generally, the versioning scheme looks like the following formats where `X` is an unsigned integer: + +- **Release candidates (RCs):** `X.X.X-rc.X` +- **Full releases:** `X.X.X` + ## Overview If only `gfold` has changed, release `gfold` alone. @@ -37,14 +45,6 @@ cargo publish -p libgfold - [ ] Verify that the [crate](https://crates.io/crates/libgfol) on `crates.io` looks correct - [ ] Ensure that the [docs](https://docs.rs/libgfold/latest/libgfold/) on `docs.rs` look correct -## Versioning Scheme - -This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -Generally, the versioning scheme looks like the following formats where `X` is an unsigned integer: - -- **Release candidates (RCs):** `X.X.X-rc.X` -- **Full releases:** `X.X.X` - ## Checklist for `gfold` Steps should be executed in sequential order.