Skip to content

Commit b70d5e8

Browse files
committed
Release 0.9.1
1 parent d724a4f commit b70d5e8

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
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.9.0";
3+
inputs.hix.url = "github:tek/hix?ref=0.9.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.9.0";
3+
inputs.hix.url = "github:tek/hix?ref=0.9.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
@@ -285,7 +285,7 @@ in {
285285

286286
packageNames = attrNames config.packages;
287287

288-
hixVersion = "0.9.0";
288+
hixVersion = "0.9.1";
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.9.0";
3-
sha256 = "0ncwlbwnnh3b0y2pcj2xp1xqyjpj0ldiypwany3mzyw6bk0pblgx";
2+
version = "0.9.1";
3+
sha256 = "09fhyh1y1crimw0zrdn7jhhwggan14nzik1y2b86nrpbkzsygwld";
44
}

ops/version.nix

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

packages/hix/hix.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cabal-version: 3.0
55
-- see: https://github.com/sol/hpack
66

77
name: hix
8-
version: 0.9.0
8+
version: 0.9.1
99
synopsis: Haskell/Nix development build tools
1010
description: See https://hackage.haskell.org/package/hix/docs/Hix.html
1111
category: Build
@@ -395,7 +395,7 @@ library testing
395395
, generic-lens ==2.2.*
396396
, generics-sop ==0.5.*
397397
, hedgehog >=1.1 && <1.5
398-
, hix:hix ==0.9.0
398+
, hix:hix ==0.9.1
399399
, http-client ==0.7.*
400400
, http-client-tls ==0.3.*
401401
, http-types ==0.12.*
@@ -557,7 +557,7 @@ test-suite hix-test
557557
, extra ==1.7.*
558558
, hedgehog >=1.1 && <1.5
559559
, hix
560-
, hix:testing ==0.9.0
560+
, hix:testing ==0.9.1
561561
, incipit-base >=0.5 && <0.7
562562
, path ==0.9.*
563563
, path-io >=1.7 && <1.9

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.9.0"
23+
hixVersion = "0.9.1"
2424

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

packages/integration/integration.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cabal-version: 3.0
55
-- see: https://github.com/sol/hpack
66

77
name: integration
8-
version: 0.9.0
8+
version: 0.9.1
99
synopsis: Haskell/Nix development build tools
1010
description: See https://hackage.haskell.org/package/integration/docs/Integration.html
1111
category: Build
@@ -76,7 +76,7 @@ library
7676
, exceptions
7777
, exon >=1.4 && <1.7
7878
, hackage-server
79-
, hix ==0.9.0
79+
, hix ==0.9.1
8080
, incipit-base >=0.5 && <0.7
8181
, network-uri
8282
, optparse-applicative >=0.17 && <0.19
@@ -198,8 +198,8 @@ test-suite integration-test
198198
, exon >=1.4 && <1.7
199199
, extra ==1.7.*
200200
, hedgehog >=1.1 && <1.5
201-
, hix ==0.9.0
202-
, hix:testing ==0.9.0
201+
, hix ==0.9.1
202+
, hix:testing ==0.9.1
203203
, incipit-base >=0.5 && <0.7
204204
, integration
205205
, lens >=5.1 && <5.4

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 Cabal project by executing this command in the proje
2121

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

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

0 commit comments

Comments
 (0)