diff options
author | Alan Pearce | 2025-03-24 20:11:39 +0100 |
---|---|---|
committer | Alan Pearce | 2025-03-24 20:11:39 +0100 |
commit | a04cc4acc1d5da1f2e351289b1a8f08cb1503c4d (patch) | |
tree | 38a6c90c62a9a41999bea141386436de3952f35b | |
parent | abf819db104560670cdc388a584d09968aac7bbb (diff) | |
download | searchix-0.1.34.tar.lz searchix-0.1.34.tar.zst searchix-0.1.34.zip |
-rw-r--r-- | CHANGELOG.md | 20 | ||||
-rw-r--r-- | nix/modules/default.nix | 2 | ||||
-rw-r--r-- | nix/package.nix | 2 |
3 files changed, 21 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ba1342f..9ccbf64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,27 @@ # Changelog -## [v0.1.33](https://git.alanpearce.eu/searchix/diff/?id=v0.1.32&id2=34bc16d3e3d12d4d14b9306baef8e5ecf600ebac) (2025-03-24) +## [v0.1.34](https://git.alanpearce.eu/searchix/diff/?id=v0.1.33&id2=abf819db104560670cdc388a584d09968aac7bbb) (2025-03-24) + +### Features + +- buffer fetched HTTP bodies + ([abf819d](https://git.alanpearce.eu/searchix/commit/?id=abf819db104560670cdc388a584d09968aac7bbb)) +- re-index on startup if last run > 24 hours ago + ([6984d4d](https://git.alanpearce.eu/searchix/commit/?id=6984d4d32ab506494394f8a6a8aa18041c45b9e8)) ### Fixes +- another typo in search markup + ([efaaf3f](https://git.alanpearce.eu/searchix/commit/?id=efaaf3f5296807eec377b19d4733fd360c8c655f)) +- typo in indexing status + ([fecc84f](https://git.alanpearce.eu/searchix/commit/?id=fecc84fab93bb3228be5fee4160820751195feec)) +- nil pointer panic in importer + ([0fb48cf](https://git.alanpearce.eu/searchix/commit/?id=0fb48cf6dd934778584120ebbc9e568c8b80b80e)) + +### [v0.1.33](https://git.alanpearce.eu/searchix/diff/?id=v0.1.32&id2=v0.1.33) (2025-03-24) + +#### Fixes + - build failure due to outdated file reference ([dd58d99](https://git.alanpearce.eu/searchix/commit/?id=dd58d9925b68c7cd639c5e217782709c1936497f)) diff --git a/nix/modules/default.nix b/nix/modules/default.nix index e0c8bf3..3aba4da 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.33 + See https://git.alanpearce.eu/searchix/tree/defaults.toml?h=v0.1.34 ''; }; }; diff --git a/nix/package.nix b/nix/package.nix index 8c81386..c2c1054 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -13,7 +13,7 @@ , css }: let - version = "0.1.33"; + version = "0.1.34"; in buildGoApplication { pname = "searchix"; |