upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2026-02-27 17:29:01 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2026-02-27 17:29:01 +0000
commitf91a0d00bafe2af1f6b6828c3de3d3e5d65153c3 (patch)
tree38ce2c5510af4bb9d74cf8d77690a2e3fc86ff63
parente7d7f933cd7eac19434f09096a311adeb5e60747 (diff)
chore: bump version to v2.2.3v2.2.3
Mark v2.2.2 as yanked in changelog; include annotated-tag sync regression fix in this release.
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 5 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d4d0a49..c6907db 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,11 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7 7
8## [Unreleased] 8## [Unreleased]
9 9
10## [2.2.3] - 2026-02-27
11
10### Fixed 12### Fixed
11 13
12- Regression introduced in 28ad5440: `ngit sync` crashed with "invalid refspec refs/remotes/origin/v1.4.4^{}:refs/tags/v1.4.4^{}" on repos with annotated tags; `RepoState::try_from` now retains `^{}` peeled-tag entries in state, but the sync refspec builder did not skip them; fixed by guarding all three iteration sites in sync.rs and `identify_remote_sync_issues` in list.rs; also corrected the always-false logic bug in `invalid_nostr_state_ref` 14- Regression introduced in 28ad5440: `ngit sync` crashed with "invalid refspec refs/remotes/origin/v1.4.4^{}:refs/tags/v1.4.4^{}" on repos with annotated tags; `RepoState::try_from` now retains `^{}` peeled-tag entries in state, but the sync refspec builder did not skip them; fixed by guarding all three iteration sites in sync.rs and `identify_remote_sync_issues` in list.rs; also corrected the always-false logic bug in `invalid_nostr_state_ref`
13 15
14## [2.2.2] - 2026-02-27 16## [2.2.2] - 2026-02-27 [YANKED]
15 17
16### Added 18### Added
17 19
diff --git a/Cargo.lock b/Cargo.lock
index cd7513b..642c09d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1548,7 +1548,7 @@ checksum = "f0efe882e02d206d8d279c20eb40e03baf7cb5136a1476dc084a324fbc3ec42d"
1548 1548
1549[[package]] 1549[[package]]
1550name = "ngit" 1550name = "ngit"
1551version = "2.2.2" 1551version = "2.2.3"
1552dependencies = [ 1552dependencies = [
1553 "anyhow", 1553 "anyhow",
1554 "assert_cmd", 1554 "assert_cmd",
diff --git a/Cargo.toml b/Cargo.toml
index 9b20aa4..e56cda4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "ngit" 2name = "ngit"
3version = "2.2.2" 3version = "2.2.3"
4edition = "2021" 4edition = "2021"
5description = "nostr plugin for git" 5description = "nostr plugin for git"
6authors = ["DanConwayDev <DanConwayDev@protonmail.com>"] 6authors = ["DanConwayDev <DanConwayDev@protonmail.com>"]