Skip to content

Commit 34dd583

Browse files
committed
bump
1 parent df4e37a commit 34dd583

File tree

4 files changed

+27
-7
lines changed

4 files changed

+27
-7
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Changelog
22

3+
## v0.2.2 - 2023-05-26
4+
5+
### Features
6+
7+
- New [book](https://nix-community.github.io/haumea)
8+
- load: `loader` now also accepts a list of matchers for loading non-Nix files
9+
([#10](https://github.com/nix-community/haumea/pull/10))
10+
11+
The following matchers and functions available under
12+
[`matchers`](https://nix-community.github.io/haumea/api/matchers.html):
13+
14+
- `always` always matches the file regardless of its file name
15+
- `extension` matches the file by its extension
16+
- `json` loads all JSON files
17+
- `nix` is the default matcher if the `loader` is a function and not a list of matchers
18+
- `regex` matches the file using the given regex
19+
- `toml` loads all TOMl files
20+
21+
### Features
22+
323
## v0.2.1 - 2023-04-19
424

525
### Features

docs/flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

templates/default/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
inputs = {
33
haumea = {
4-
url = "github:nix-community/haumea/v0.2.1";
4+
url = "github:nix-community/haumea/v0.2.2";
55
inputs.nixpkgs.follows = "nixpkgs";
66
};
77
nixpkgs.url = "github:nix-community/nixpkgs.lib";

0 commit comments

Comments
 (0)