Skip to content

Commit 2e2f295

Browse files
committed
Release 0.9.0
1 parent 44a5358 commit 2e2f295

File tree

19 files changed

+25
-25
lines changed

19 files changed

+25
-25
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.9.0
22

33
* Add an experimental app, `maint`, that uploads Hackage revisions for previous tags when bounds can be bumped.
44
* Add `package.<package>.expose.target`, controlling whether a package is included in the default targets of envs.

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.8.0";
3+
inputs.hix.url = "github:tek/hix?ref=0.9.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.8.0";
3+
inputs.hix.url = "github:tek/hix?ref=0.9.0";
44
outputs = {hix, ...}: hix {
55
packages.parser = {
66
src = ./.;

local.nix

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

269269
internal.cabal-extra.default-extensions = ["StrictData"];
270270

271-
internal.hixCli.dev = true;
271+
internal.hixCli.dev = false;
272272

273273
outputs = let
274274

modules/basic.nix

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

286286
packageNames = attrNames config.packages;
287287

288-
hixVersion = "0.8.0";
288+
hixVersion = "0.9.0";
289289

290290
};
291291
};

ops/cli-dep.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
version = "0.8.0";
3-
sha256 = "1kkjy9gksnpl0d67rk23iswywv41fi1jyh5mmq69si6cd8y1dx7k";
2+
version = "0.9.0";
3+
sha256 = "0ncwlbwnnh3b0y2pcj2xp1xqyjpj0ldiypwany3mzyw6bk0pblgx";
44
}

ops/version.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
"0.8.0"
1+
"0.9.0"

packages/hix/lib/Hix.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import Hix.Options (parseCli)
2020
import Hix.Preproc (preprocess)
2121

2222
hixVersion :: Text
23-
hixVersion = "0.8.0"
23+
hixVersion = "0.9.0"
2424

2525
runCommand :: Command -> M ()
2626
runCommand = \case

readme.md

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

2222
```
23-
nix run 'https://flakehub.com/f/tek/hix/~0.8.tar.gz#bootstrap'
24-
nix run 'github:tek/hix?ref=0.8.0#bootstrap'
23+
nix run 'https://flakehub.com/f/tek/hix/~0.9.tar.gz#bootstrap'
24+
nix run 'github:tek/hix?ref=0.9.0#bootstrap'
2525
```
2626

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

2929
```
30-
nix run 'https://flakehub.com/f/tek/hix/~0.8.tar.gz#init' -- --author 'Your Name' --name project-name
31-
nix run 'https://flakehub.com/f/tek/hix/~0.8.tar.gz#new' -- --author 'Your Name' path/to/project-name
30+
nix run 'https://flakehub.com/f/tek/hix/~0.9.tar.gz#init' -- --author 'Your Name' --name project-name
31+
nix run 'https://flakehub.com/f/tek/hix/~0.9.tar.gz#new' -- --author 'Your Name' path/to/project-name
3232
```
3333

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

3636
```nix
3737
{
38-
inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.8.tar.gz";
38+
inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.9.tar.gz";
3939
}
4040
```
4141

@@ -44,7 +44,7 @@ Then configure your project with NixOS module options:
4444
```nix
4545
{
4646
description = "Example";
47-
inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.8.tar.gz";
47+
inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.9.tar.gz";
4848
outputs = {hix, ...}: hix {
4949
packages.parser = {
5050
src = ./.;

test/bump/root/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
extra = throw "global overrides";
5454
};
5555

56-
internal.hixCli.dev = true;
56+
internal.hixCli.dev = false;
5757

5858
});
5959
}

0 commit comments

Comments
 (0)