From 5b052322aa316b3e76d6900307da069266d4dc70 Mon Sep 17 00:00:00 2001 From: Nick Gerace Date: Thu, 23 May 2024 16:00:13 -0400 Subject: [PATCH] Update libgfold to 0.1.3 Signed-off-by: Nick Gerace --- Cargo.lock | 2 +- bin/gfold/Cargo.toml | 2 +- docs/RELEASE.md | 3 ++- lib/libgfold/CHANGELOG.md | 8 +++++++- lib/libgfold/Cargo.toml | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b51b1ff..f545a6e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -389,7 +389,7 @@ checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" [[package]] name = "libgfold" -version = "0.1.2" +version = "0.1.3" dependencies = [ "anyhow", "env_logger", diff --git a/bin/gfold/Cargo.toml b/bin/gfold/Cargo.toml index a9ce165..66637c1 100644 --- a/bin/gfold/Cargo.toml +++ b/bin/gfold/Cargo.toml @@ -14,7 +14,7 @@ license.workspace = true repository.workspace = true [dependencies] -libgfold = { version = "0.1.2", path = "../../lib/libgfold" } +libgfold = { version = "0.1.3", path = "../../lib/libgfold" } anyhow = { workspace = true } clap = { workspace = true } diff --git a/docs/RELEASE.md b/docs/RELEASE.md index 588309c..d0da76c 100644 --- a/docs/RELEASE.md +++ b/docs/RELEASE.md @@ -21,6 +21,7 @@ Steps should be executed in sequential order. - [ ] Checkout and rebase `main` to its latest commit and checkout a new branch - [ ] Change the `version` field in [`Cargo.toml`](../lib/libgfold/Cargo.toml) to the new tag +- [ ] Use the new version in the `gfold` [`Cargo.toml`](../lib/gfold/Cargo.toml) file - [ ] Change the version in [`CHANGELOG.md`](../CHANGELOG.md) and uncomment the following line: `` (skip this for release candidates) - [ ] Verify that everything looks/works as expected: @@ -91,4 +92,4 @@ cargo install --locked gfold cargo install --locked --version gfold ``` -- [ ] Verify that the [GitHub release](https://github.com/nickgerace/gfold/releases) on the repository's releases page looks correct \ No newline at end of file +- [ ] Verify that the [GitHub release](https://github.com/nickgerace/gfold/releases) on the repository's releases page looks correct diff --git a/lib/libgfold/CHANGELOG.md b/lib/libgfold/CHANGELOG.md index 992c2c7..8cf1619 100644 --- a/lib/libgfold/CHANGELOG.md +++ b/lib/libgfold/CHANGELOG.md @@ -9,6 +9,12 @@ The latest version contains all changes. +## 0.1.3 - 2024-05-23 + +### Changed + +- Bump dependencies + ## 0.1.2 - 2023-12-23 ### Changed @@ -26,4 +32,4 @@ The latest version contains all changes. ### Added -- Add initial contents \ No newline at end of file +- Add initial contents diff --git a/lib/libgfold/Cargo.toml b/lib/libgfold/Cargo.toml index 1acdae1..15be56c 100644 --- a/lib/libgfold/Cargo.toml +++ b/lib/libgfold/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libgfold" -version = "0.1.2" +version = "0.1.3" categories = ["development-tools"] description = "Provides the ability to find a minimal set of user-relevant information for Git repositories on a local filesystem."