all repos — searchix @ e29c292586d2c67b73608cd575e3e7920ac01a12

Search engine for NixOS, nix-darwin, home-manager and NUR users

chore: release 0.1.29
Alan Pearce alan@alanpearce.eu
Mon, 17 Mar 2025 10:23:59 +0100
commit

e29c292586d2c67b73608cd575e3e7920ac01a12

parent

573e24bf30e5e8b8f5b82e848258b70eea9f3a74

3 files changed, 14 insertions(+), 3 deletions(-)

jump to
M CHANGELOG.mdCHANGELOG.md
@@ -1,8 +1,19 @@ # Changelog
 
-## [v0.1.28](https://git.alanpearce.eu/searchix/diff/?id=v0.1.27&id2=9af2747a1168f41b39b446bfe3ecab6c7b25ff99) (2025-03-12)
+## [v0.1.29](https://git.alanpearce.eu/searchix/diff/?id=v0.1.28&id2=573e24bf30e5e8b8f5b82e848258b70eea9f3a74) (2025-03-17)
 
 ### Fixes
+
+-   nil pointer deference in nixpkgs-channel fetcher
+    ([573e24b](https://git.alanpearce.eu/searchix/commit/?id=573e24bf30e5e8b8f5b82e848258b70eea9f3a74))
+-   build error (incomplete commit)
+    ([d5e1147](https://git.alanpearce.eu/searchix/commit/?id=d5e11478bf3771623a0d181e6cede3145b3563e0))
+-   build error caused by incomplete commit
+    ([f775db9](https://git.alanpearce.eu/searchix/commit/?id=f775db95d59a56feeafa6a4e147885c814bf5fb7))
+
+### [v0.1.28](https://git.alanpearce.eu/searchix/diff/?id=v0.1.27&id2=v0.1.28) (2025-03-12)
+
+#### Fixes
 
 -   js error due to missing class on nav menu item
     ([9af2747](https://git.alanpearce.eu/searchix/commit/?id=9af2747a1168f41b39b446bfe3ecab6c7b25ff99))
M nix/modules/default.nixnix/modules/default.nix
@@ -194,7 +194,7 @@ };       description = ''
         Configuration for searchix.
 
-        See https://git.alanpearce.eu/searchix/tree/defaults.toml?h=v0.1.28
+        See https://git.alanpearce.eu/searchix/tree/defaults.toml?h=v0.1.29
       '';
     };
   };
M nix/package.nixnix/package.nix
@@ -13,7 +13,7 @@ , buildGoApplication ? pkgs.buildGoApplication , css
 }:
 let
-  version = "0.1.28";
+  version = "0.1.29";
 in
 buildGoApplication {
   pname = "searchix";