From 44032c3895c6ab6fbfdd176e7684b9dbbdf530da Mon Sep 17 00:00:00 2001 From: technofab Date: Thu, 16 Apr 2026 12:56:37 +0200 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20missed=20another=20fold=20=E2=86=92?= =?UTF-8?q?=20foldr?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/default.nix b/lib/default.nix index 7095c2c..0b333cd 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -84,7 +84,7 @@ in rec { else importedData; importedContents = map importAndProcessFile allNixFiles; - mergedFiles = fold (acc: item: recursiveUpdate acc item) {} importedContents; + mergedFiles = foldr (acc: item: recursiveUpdate acc item) {} importedContents; in mergedFiles; } From 1304a2da9160d60eaef5c77d9a10f2db5e767ac7 Mon Sep 17 00:00:00 2001 From: technofab Date: Thu, 16 Apr 2026 12:56:59 +0200 Subject: [PATCH 2/2] chore(version): v0.1.2 --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21a6055..6c1a8c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - +## [v0.1.2](https://gitlab.com/rensa-nix/utils/compare/44032c3895c6ab6fbfdd176e7684b9dbbdf530da..v0.1.2) - 2026-04-16 +#### Bug Fixes +- missed another fold → foldr - ([44032c3](https://gitlab.com/rensa-nix/utils/commit/44032c3895c6ab6fbfdd176e7684b9dbbdf530da)) - [@TECHNOFAB](https://gitlab.com/TECHNOFAB) + +- - - + ## [v0.1.1](https://gitlab.com/rensa-nix/utils/compare/0b19ff083120590ef4aabe034f5c1a969652edda..v0.1.1) - 2026-04-16 #### Bug Fixes - use foldr instead of deprecated fold - ([a48eecb](https://gitlab.com/rensa-nix/utils/commit/a48eecbdc51f8c7474b5aacd3b7c4bc4ee5c9ff0)) - [@TECHNOFAB](https://gitlab.com/TECHNOFAB)