Skip to content

Commit 0e7e843

Browse files
committed
Release 0.7.0
1 parent a3fc7e1 commit 0e7e843

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Unreleased
1+
# 0.7.0
22

33
* Fetch `thax` from a static URL, removing the flake input.
44
* Fix environment not being set when using `direnv`.

examples/doc-env-selection/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
description = "hix test project";
3-
inputs.hix.url = "github:tek/hix?ref=0.6.9";
3+
inputs.hix.url = "github:tek/hix?ref=0.7.0";
44
outputs = {hix, ...}: hix ({config, ...}: {
55
envs = {
66
one.env = { number = 1; };

examples/doc-packages/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
description = "Example";
3-
inputs.hix.url = "github:tek/hix?ref=0.6.9";
3+
inputs.hix.url = "github:tek/hix?ref=0.7.0";
44
outputs = {hix, ...}: hix {
55
packages.parser = {
66
src = ./.;

modules/basic.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ in {
329329

330330
relativePackages = util.relativePackages config.base config.internal.packagePaths;
331331

332-
hixVersion = "0.6.9";
332+
hixVersion = "0.7.0";
333333

334334
};
335335
};

readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ You can convert an existing project with Cabal files by executing this command i
2020
[FlakeHub](https://flakehub.com/docs) or GitHub:
2121

2222
```
23-
nix run 'https://flakehub.com/f/tek/hix/~0.6.tar.gz#bootstrap'
24-
nix run 'github:tek/hix?ref=0.6.9#bootstrap'
23+
nix run 'https://flakehub.com/f/tek/hix/~0.7.tar.gz#bootstrap'
24+
nix run 'github:tek/hix?ref=0.7.0#bootstrap'
2525
```
2626

2727
You can create a new project in the current directory:
2828

2929
```
30-
nix run 'https://flakehub.com/f/tek/hix/~0.6.tar.gz#new' -- --name 'project-name' --author 'Your Name'
30+
nix run 'https://flakehub.com/f/tek/hix/~0.7.tar.gz#new' -- --name 'project-name' --author 'Your Name'
3131
```
3232

3333
The manual process consists of first adding Hix to your Haskell project flake by specifying the input:
3434

3535
```nix
3636
{
37-
inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.6.tar.gz";
37+
inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.7.tar.gz";
3838
}
3939
```
4040

@@ -43,7 +43,7 @@ Then configure your project with NixOS module options:
4343
```nix
4444
{
4545
description = "Example";
46-
inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.6.tar.gz";
46+
inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.7.tar.gz";
4747
outputs = {hix, ...}: hix {
4848
packages.parser = {
4949
src = ./.;

test/bump/root/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@
5252
};
5353

5454
# TODO remove
55-
internal.hixCli.dev = true;
55+
internal.hixCli.dev = false;
5656
});
5757
}

test/ghci-vm/root/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
};
2222
ports.nginx = { host = 2; guest = 80; };
2323
};
24-
internal.hixCli.dev = true;
24+
internal.hixCli.dev = false;
2525
});
2626
}

test/ghci/root/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@
3333
};
3434
expose = true;
3535
};
36-
internal.hixCli.dev = true;
36+
internal.hixCli.dev = false;
3737
});
3838
}

test/local-prelude/root/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
};
2020
};
2121
};
22-
internal.hixCli.dev = true;
22+
internal.hixCli.dev = false;
2323
};
2424
}

test/lower-local/root/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
envs.lower-local2.localPackage = api: api.minimal;
4545

4646
# TODO remove
47-
internal.hixCli.dev = true;
47+
internal.hixCli.dev = false;
4848
});
4949
}

0 commit comments

Comments
 (0)