upleb.uk

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

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md5
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bd3c4dc..2995cd3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,15 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7 7
8## [Unreleased] 8## [Unreleased]
9 9
10## [2.4.0] - 2026-04-10
11
10### Added 12### Added
11 13
12- git worktree support (a3b0bf6) - thanks to new contributor m0wer 14- git worktree support (a3b0bf6) - thanks to new contributor m0wer
13 15
14### Fixed 16### Fixed
15 17
16- more robust patch parsing and gracefully handle errors (7a36aed, e1dd109, 6a2245d), 18- more robust patch parsing and gracefully handle errors (7a36aed, e1dd109, 6a2245d)
17- panic when cloning a bare `nostr://npub/identifier` URL with no relay hints (f3a6ae8) 19- panic when cloning a bare `nostr://npub/identifier` URL with no relay hints (f3a6ae8)
18- repository identifiers containing reserved characters (e.g. spaces, emoji) are now percent-encoded in `nostr://` clone URLs and GRASP HTTP paths, per [NIP-34](https://github.com/nostr-protocol/nips/pull/2312) 20- repository identifiers containing reserved characters (e.g. spaces, emoji) are now percent-encoded in `nostr://` clone URLs and GRASP HTTP paths, per [NIP-34](https://github.com/nostr-protocol/nips/pull/2312)
21- gracefully handle errors identifying potential PR merges on push (3daf61e)
19 22
20## [2.3.0] - 2026-03-05 23## [2.3.0] - 2026-03-05
21 24
diff --git a/Cargo.lock b/Cargo.lock
index 97978c0..79857b3 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.3.0" 1551version = "2.4.0"
1552dependencies = [ 1552dependencies = [
1553 "anyhow", 1553 "anyhow",
1554 "assert_cmd", 1554 "assert_cmd",
diff --git a/Cargo.toml b/Cargo.toml
index 093992d..afaa157 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "ngit" 2name = "ngit"
3version = "2.3.0" 3version = "2.4.0"
4edition = "2021" 4edition = "2021"
5description = "nostr plugin for git" 5description = "nostr plugin for git"
6authors = ["DanConwayDev <DanConwayDev@protonmail.com>"] 6authors = ["DanConwayDev <DanConwayDev@protonmail.com>"]