Skip to content

Commit 4435fae

Browse files
committed
Release 0.7.1
1 parent b7c7b0e commit 4435fae

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

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.0";
3+
inputs.hix.url = "github:tek/hix?ref=0.7.1";
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.0";
3+
inputs.hix.url = "github:tek/hix?ref=0.7.1";
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.7.0";
332+
hixVersion = "0.7.1";
333333

334334
};
335335
};

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.0";
3-
sha256 = "1b8pmmywvq1w2fc8gph811s6lvqw3anzw9nci1b5dv9lsy59jjd5";
2+
version = "0.7.1";
3+
sha256 = "1n03znacq7sf180lzn9qzqa0vllql0ii0dbhz9kpckyzhv657p5f";
44
}

ops/version.nix

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

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.0
8+
version: 0.7.1
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ You can convert an existing project with Cabal files by executing this command i
2121

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

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

0 commit comments

Comments
 (0)