about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md13
-rw-r--r--nix/modules/default.nix2
-rw-r--r--nix/package.nix2
3 files changed, 14 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c622752..fa0f035 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,20 @@
 # 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))
 
diff --git a/nix/modules/default.nix b/nix/modules/default.nix
index 2c166b0..34b3c80 100644
--- a/nix/modules/default.nix
+++ b/nix/modules/default.nix
@@ -194,7 +194,7 @@ in
       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
       '';
     };
   };
diff --git a/nix/package.nix b/nix/package.nix
index a23d663..56bc6b1 100644
--- a/nix/package.nix
+++ b/nix/package.nix
@@ -13,7 +13,7 @@
 , css
 }:
 let
-  version = "0.1.28";
+  version = "0.1.29";
 in
 buildGoApplication {
   pname = "searchix";