all repos — searchix @ a43e67299d91136481647ce0ffc4bfd838d10ac7

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

chore: release v0.4.0

Alan Pearce
commit

a43e67299d91136481647ce0ffc4bfd838d10ac7

parent

0d664b10b50db1871770826fd09171575a712595

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

changed files
M CHANGELOG.mdCHANGELOG.md
@@ -1,6 +1,19 @@
# Changelog -## [v0.3.0](https://codeberg.org/alanpearce/searchix/compare/v0.2.8...ff283282d42ec5f77e9ad8f2c5616e4315b0355e) (2025-11-05) +## [v0.4.0](https://codeberg.org/alanpearce/searchix/compare/v0.3.0...0d664b10b50db1871770826fd09171575a712595) (2025-11-06) + +### ⚠ BREAKING CHANGE + +- requires `--outdir` instead of writing to stdout + +### Fixes + +- use correct search name for combined search + ([0d664b1](https://codeberg.org/alanpearce/searchix/commit/0d664b10b50db1871770826fd09171575a712595)) +- make generate-error-page command output assets + ([d29ccd9](https://codeberg.org/alanpearce/searchix/commit/d29ccd9bebef309aea3dfddea1dfbd1f62ca38a5)) + +## [v0.3.0](https://codeberg.org/alanpearce/searchix/compare/v0.2.8...v0.3.0) (2025-11-05) ### Features
M nix/modules/default.nixnix/modules/default.nix
@@ -237,7 +237,7 @@ };
description = '' Configuration for searchix. - See https://git.alin.ovh/searchix/blob/v0.3.0/defaults.toml + See https://git.alin.ovh/searchix/blob/v0.4.0/defaults.toml ''; }; };
M nix/package.nixnix/package.nix
@@ -14,7 +14,7 @@ buildGoApplication ? pkgs.buildGoApplication,
css, }: let - version = "0.3.0"; + version = "0.4.0"; in buildGoApplication { pname = "searchix";