Skip to content

Commit 7c012b3

Browse files
committed
Release 0.6.7
1 parent bfd5103 commit 7c012b3

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
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.6.7
22

33
* The option `hackage.add` allows changed files to be git-added, but not committed, during release when `hackage.commit`
44
is `false`.

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.6";
3+
inputs.hix.url = "github:tek/hix?ref=0.6.7";
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.6";
3+
inputs.hix.url = "github:tek/hix?ref=0.6.7";
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
@@ -309,7 +309,7 @@ in {
309309

310310
relativePackages = util.relativePackages config.base config.internal.packagePaths;
311311

312-
hixVersion = "0.6.6";
312+
hixVersion = "0.6.7";
313313

314314
};
315315
};

modules/cli.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ in {
5555
} // (
5656
if config.internal.hixCli.dev
5757
then { hix = minimal (source.package ../. "hix"); }
58-
else { hix = jailbreak (minimal (hackage "0.6.2" "1f1qszzriap9m8sf4v3ycj4zvv54v3rkd480vfnw35ajswqjzjhw")); }
58+
else { hix = jailbreak (minimal (hackage "0.6.7" "1kcab39rwangb4m1viw58ppvf1ps4i75i2dgapzyqklq87f1bmpi")); }
5959
);
6060

6161
ghc = {

ops/version.nix

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

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.6.2
8+
version: 0.6.7
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.6.tar.gz#bootstrap'
24-
nix run 'github:tek/hix?ref=0.6.6#bootstrap'
24+
nix run 'github:tek/hix?ref=0.6.7#bootstrap'
2525
```
2626

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

0 commit comments

Comments
 (0)