diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c1a8c5..21a6055 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,6 @@ 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) diff --git a/lib/default.nix b/lib/default.nix index 0b333cd..7095c2c 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -84,7 +84,7 @@ in rec { else importedData; importedContents = map importAndProcessFile allNixFiles; - mergedFiles = foldr (acc: item: recursiveUpdate acc item) {} importedContents; + mergedFiles = fold (acc: item: recursiveUpdate acc item) {} importedContents; in mergedFiles; }