diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2026-04-10 20:45:06 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2026-04-10 20:46:02 +0000 |
| commit | 205ca05897cbc727d9b75e7ab68375b5c93ead39 (patch) | |
| tree | 715de3fec49d96b55b0019d094cd7d17dbda6efa | |
| parent | 47622eb762e802a9caa2f37d8162eaaf2f9aa9ca (diff) | |
chore: release v2.4.0v2.4.0
Add git worktree support and fix patch parsing, panic on bare npub clone,
percent-encoding of reserved characters in identifiers, and push errors.
| -rw-r--r-- | CHANGELOG.md | 5 | ||||
| -rw-r--r-- | Cargo.lock | 2 | ||||
| -rw-r--r-- | Cargo.toml | 2 |
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 | ||
| @@ -1548,7 +1548,7 @@ checksum = "f0efe882e02d206d8d279c20eb40e03baf7cb5136a1476dc084a324fbc3ec42d" | |||
| 1548 | 1548 | ||
| 1549 | [[package]] | 1549 | [[package]] |
| 1550 | name = "ngit" | 1550 | name = "ngit" |
| 1551 | version = "2.3.0" | 1551 | version = "2.4.0" |
| 1552 | dependencies = [ | 1552 | dependencies = [ |
| 1553 | "anyhow", | 1553 | "anyhow", |
| 1554 | "assert_cmd", | 1554 | "assert_cmd", |
| @@ -1,6 +1,6 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | name = "ngit" | 2 | name = "ngit" |
| 3 | version = "2.3.0" | 3 | version = "2.4.0" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | description = "nostr plugin for git" | 5 | description = "nostr plugin for git" |
| 6 | authors = ["DanConwayDev <DanConwayDev@protonmail.com>"] | 6 | authors = ["DanConwayDev <DanConwayDev@protonmail.com>"] |