zaphyra's git: haumea

fork of https://github.com/nix-community/haumea

commit 828fcac006f534f83071e5ed5b0280a5391aa95e
parent 9d27f27a1abfa311fd0a0a2022a2f12b8cad38c7
Author: figsoda <figsoda@pm.me>
Date: Mon, 10 Apr 2023 18:56:37 -0400

bump version
2 files changed, 15 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -1,5 +1,19 @@
 # Changelog
 
+## v0.2.0 - 2023-04-10
+
+## Breaking Changes
+
+- Transformers now accept a ccursor as an argument.
+  The type signature of `transformer` have changed
+  from `{ ... } -> a` to `[ String ] -> { ... } -> a`
+
+## Features
+
+- `transformers.hoistAttrs` and `transformers.hoistLists`
+  bring a specific attribute name at all levels to the root.
+- load: `transformer` now also accepts a list or a nested list of functions.
+
 ## v0.1.1 - 2023-04-07
 
 ## Features
diff --git a/templates/default/flake.nix b/templates/default/flake.nix
@@ -1,7 +1,7 @@
 {
   inputs = {
     haumea = {
-      url = "github:nix-community/haumea/v0.1.1";
+      url = "github:nix-community/haumea/v0.2.0";
       inputs.nixpkgs.follows = "nixpkgs";
     };
     nixpkgs.url = "github:nix-community/nixpkgs.lib";