diff --git a/CHANGELOG.md b/CHANGELOG.md index 827b29f..f1f2e24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +# git-grab 0.10.0 (2026-05-30) + +## Features + +- Add parsing to match the CodeBerg ssh clone string format. (#53) +- Zig 0.16.0 + Add support for zig 0.16.0 (#63) +- Allow the shallow clone of repos, forces a depth of one, by setting the `-S/--shallow` flag. (#68) + +## Removals + +- Support for windows. + Saddly to support windows is going to take more effort. That effort is not currently justified. + +## Misc + +- Updated the build system to make use of the zon file reading. (#51) +- Update precommit configuration to include running zig test at commit time +- Updated the towncrier configuration to allows show the contains of the misc fragments. + + # git-grab 0.9.0 (2026-01-31) ## Features diff --git a/build.zig.zon b/build.zig.zon index 0ae43b1..ea15ff8 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -9,7 +9,7 @@ .name = .grab, // This is a [Semantic Version](https://semver.org/). // In a future version of Zig it will be used for package deduplication. - .version = "0.10.0-dev", + .version = "0.10.0", // Together with name, this represents a globally unique package // identifier. This field is generated by the Zig toolchain when the // package is first created, and then *never changes*. This allows diff --git a/changelog.d/+340a9191.misc.md b/changelog.d/+340a9191.misc.md deleted file mode 100644 index 1c106b8..0000000 --- a/changelog.d/+340a9191.misc.md +++ /dev/null @@ -1 +0,0 @@ -Update precommit configuration to include running zig test at commit time diff --git a/changelog.d/+60015563.removal.md b/changelog.d/+60015563.removal.md deleted file mode 100644 index a972d5c..0000000 --- a/changelog.d/+60015563.removal.md +++ /dev/null @@ -1,3 +0,0 @@ -Support for windows. - -Saddly to support windows is going to take more effort. That effort is not currently justified. diff --git a/changelog.d/+bedcba4a.misc.md b/changelog.d/+bedcba4a.misc.md deleted file mode 100644 index 459ffb0..0000000 --- a/changelog.d/+bedcba4a.misc.md +++ /dev/null @@ -1 +0,0 @@ -Updated the towncrier configuration to allows show the contains of the misc fragments. diff --git a/changelog.d/51.misc.md b/changelog.d/51.misc.md deleted file mode 100644 index 23c27a3..0000000 --- a/changelog.d/51.misc.md +++ /dev/null @@ -1 +0,0 @@ -Updated the build system to make use of the zon file reading. diff --git a/changelog.d/53.feature.md b/changelog.d/53.feature.md deleted file mode 100644 index a568a9d..0000000 --- a/changelog.d/53.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add parsing to match the CodeBerg ssh clone string format. diff --git a/changelog.d/63.feature.md b/changelog.d/63.feature.md deleted file mode 100644 index 0ea89bf..0000000 --- a/changelog.d/63.feature.md +++ /dev/null @@ -1,3 +0,0 @@ -Zig 0.16.0 - -Add support for zig 0.16.0 diff --git a/changelog.d/68.feature.md b/changelog.d/68.feature.md deleted file mode 100644 index c59488d..0000000 --- a/changelog.d/68.feature.md +++ /dev/null @@ -1 +0,0 @@ -Allow the shallow clone of repos, forces a depth of one, by setting the `-S/--shallow` flag.