Skip to content

Commit f2f31e5

Browse files
committed
Release 0.8.0
1 parent cf2d9a7 commit f2f31e5

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
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.8.0
22

33
* Add a reusable workflow for managed bounds updates.
44
* Parse Nix json output messages to diagnose problems in managed bounds apps; add overrides for installed packages that

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.7.1";
3+
inputs.hix.url = "github:tek/hix?ref=0.8.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.7.1";
3+
inputs.hix.url = "github:tek/hix?ref=0.8.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
@@ -284,7 +284,7 @@ in {
284284

285285
packageNames = attrNames config.packages;
286286

287-
hixVersion = "0.7.1";
287+
hixVersion = "0.8.0";
288288

289289
};
290290
};

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.7.2";
3-
sha256 = "19j3f6ncfn0qjf8yr7ap4zpril45pqixz42lc4w2n40v41nfjdwi";
2+
version = "0.8.0";
3+
sha256 = "1kkjy9gksnpl0d67rk23iswywv41fi1jyh5mmq69si6cd8y1dx7k";
44
}

ops/version.nix

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

packages/hix/hix.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cabal-version: 2.2
55
-- see: https://github.com/sol/hpack
66

77
name: hix
8-
version: 0.7.2
8+
version: 0.8.0
99
synopsis: Haskell/Nix development build tools
1010
description: See https://hackage.haskell.org/package/hix/docs/Hix.html
1111
category: Build

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.7.tar.gz#bootstrap'
24-
nix run 'github:tek/hix?ref=0.7.1#bootstrap'
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'
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.7.tar.gz#new' -- --name 'project-name' --author 'Your Name'
30+
nix run 'https://flakehub.com/f/tek/hix/~0.8.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.7.tar.gz";
37+
inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.8.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.7.tar.gz";
46+
inputs.hix.url = "https://flakehub.com/f/tek/hix/~0.8.tar.gz";
4747
outputs = {hix, ...}: hix {
4848
packages.parser = {
4949
src = ./.;

test/ghci/root/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
expose = true;
5555
};
5656

57-
internal.hixCli.dev = true;
57+
internal.hixCli.dev = false;
5858

5959
});
6060
}

0 commit comments

Comments
 (0)