diff options
author | Nick Gerace <nickagerace@gmail.com> | 2022-12-20 14:50:37 -0500 |
---|---|---|
committer | Nick Gerace <nickagerace@gmail.com> | 2022-12-20 14:50:37 -0500 |
commit | d7a3510dd806b0edb2e09de2a67cc78a7a464141 (patch) | |
tree | cf173e478de0750ab3b70cfcc08a2254489c977f | |
parent | db058883999ed4a23dc1acbafaaf75598321f05c (diff) | |
download | gfold-d7a3510dd806b0edb2e09de2a67cc78a7a464141.zip |
Update to 4.1.2
Signed-off-by: Nick Gerace <nickagerace@gmail.com>
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | crates/gfold/Cargo.toml | 2 | ||||
-rw-r--r-- | docs/RELEASE.md | 2 |
4 files changed, 7 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ba217e2..df20ef6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,12 +8,14 @@ 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.1.2 - 2022-12-20 ### Changed - Bump dependencies -- When checking if unpushed and attempting to resolve the reference from a short name, ignore the error and assume we need to push +- When checking if "unpushed" and attempting to resolve the reference from a short name, ignore the error and assume we need to push ## 4.1.1 - 2022-12-19 @@ -259,7 +259,7 @@ dependencies = [ [[package]] name = "gfold" -version = "4.1.1" +version = "4.1.2" dependencies = [ "anyhow", "clap", diff --git a/crates/gfold/Cargo.toml b/crates/gfold/Cargo.toml index 1cefd46..e8418c9 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.1.1" +version = "4.1.2" [dependencies] anyhow = { version = "1.0", features = ["backtrace"] } diff --git a/docs/RELEASE.md b/docs/RELEASE.md index 35c30c5..b46ea97 100644 --- a/docs/RELEASE.md +++ b/docs/RELEASE.md @@ -8,7 +8,7 @@ This checklist details the `gfold` release process. Steps should be executed in sequential order. - [ ] Checkout and rebase `main` to its latest commit, then checkout a new branch -- [ ] Change the `version` field in `Cargo.toml` to the new tag +- [ ] Change the `version` field in [`Cargo.toml`](../crates/gfold/Cargo.toml) to the new tag - [ ] **Full Releases Only**: change the version in `CHANGELOG.md` and uncomment the following line: `<!--The latest version contains all changes.-->` - [ ] Verify that everything looks/works as expected: |