diff options
author | Alan Pearce | 2025-03-24 14:56:21 +0100 |
---|---|---|
committer | Alan Pearce | 2025-03-24 14:56:21 +0100 |
commit | 149a01bff8de5687fa2fa59f02085e8138ff7667 (patch) | |
tree | 1180341cbf7b274c7edcf456359a029f4d31807f | |
parent | 34bc16d3e3d12d4d14b9306baef8e5ecf600ebac (diff) | |
download | searchix-149a01bff8de5687fa2fa59f02085e8138ff7667.tar.lz searchix-149a01bff8de5687fa2fa59f02085e8138ff7667.tar.zst searchix-149a01bff8de5687fa2fa59f02085e8138ff7667.zip |
chore: release v0.1.33 v0.1.33
-rw-r--r-- | CHANGELOG.md | 13 | ||||
-rw-r--r-- | nix/modules/default.nix | 2 | ||||
-rw-r--r-- | nix/package.nix | 2 |
3 files changed, 12 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c61b7d..ba1342f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,15 @@ # Changelog -## [v0.1.32](https://git.alanpearce.eu/searchix/diff/?id=v0.1.31&id2=0a2289ae1b3046be29d6dccb92dc871a2090fe7a) (2025-03-24) +## [v0.1.33](https://git.alanpearce.eu/searchix/diff/?id=v0.1.32&id2=34bc16d3e3d12d4d14b9306baef8e5ecf600ebac) (2025-03-24) -### Features +### Fixes + +- build failure due to outdated file reference + ([dd58d99](https://git.alanpearce.eu/searchix/commit/?id=dd58d9925b68c7cd639c5e217782709c1936497f)) + +### [v0.1.32](https://git.alanpearce.eu/searchix/diff/?id=v0.1.31&id2=v0.1.32) (2025-03-24) + +#### Features - improve handling of long option descriptions ([4fa3ceb](https://git.alanpearce.eu/searchix/commit/?id=4fa3ceb5ac040a84f2da405c46e4af1231d22f17)) @@ -17,7 +24,7 @@ - promote prefix/exact name/attr matches ([1328df9](https://git.alanpearce.eu/searchix/commit/?id=1328df9c5ca44e903a052c9bfc9a67dd34e25704)) -### Fixes +#### Fixes - missing content of last index run time ([0dc2635](https://git.alanpearce.eu/searchix/commit/?id=0dc2635e199591b917c8cc8ff40df3c3da6f9ec6)) diff --git a/nix/modules/default.nix b/nix/modules/default.nix index bc37afe..e0c8bf3 100644 --- a/nix/modules/default.nix +++ b/nix/modules/default.nix @@ -200,7 +200,7 @@ in description = '' Configuration for searchix. - See https://git.alanpearce.eu/searchix/tree/defaults.toml?h=v0.1.32 + See https://git.alanpearce.eu/searchix/tree/defaults.toml?h=v0.1.33 ''; }; }; diff --git a/nix/package.nix b/nix/package.nix index 8a1f526..8c81386 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -13,7 +13,7 @@ , css }: let - version = "0.1.32"; + version = "0.1.33"; in buildGoApplication { pname = "searchix"; |