diff --git a/examples/doc-env-selection/flake.nix b/examples/doc-env-selection/flake.nix index a27f8c6..3b0d4f6 100644 --- a/examples/doc-env-selection/flake.nix +++ b/examples/doc-env-selection/flake.nix @@ -1,6 +1,6 @@ { description = "hix test project"; - inputs.hix.url = "github:tek/hix?ref=0.7.0"; + inputs.hix.url = "github:tek/hix?ref=0.7.1"; outputs = {hix, ...}: hix ({config, ...}: { envs = { one.env = { number = 1; }; diff --git a/examples/doc-packages/flake.nix b/examples/doc-packages/flake.nix index 118fb32..005d981 100644 --- a/examples/doc-packages/flake.nix +++ b/examples/doc-packages/flake.nix @@ -1,6 +1,6 @@ { description = "Example"; - inputs.hix.url = "github:tek/hix?ref=0.7.0"; + inputs.hix.url = "github:tek/hix?ref=0.7.1"; outputs = {hix, ...}: hix { packages.parser = { src = ./.; diff --git a/modules/basic.nix b/modules/basic.nix index 87bec5a..dcc5493 100644 --- a/modules/basic.nix +++ b/modules/basic.nix @@ -329,7 +329,7 @@ in { relativePackages = util.relativePackages config.base config.internal.packagePaths; - hixVersion = "0.7.0"; + hixVersion = "0.7.1"; }; }; diff --git a/ops/cli-dep.nix b/ops/cli-dep.nix index 24574cc..4809969 100644 --- a/ops/cli-dep.nix +++ b/ops/cli-dep.nix @@ -1,4 +1,4 @@ { - version = "0.7.0"; - sha256 = "1b8pmmywvq1w2fc8gph811s6lvqw3anzw9nci1b5dv9lsy59jjd5"; + version = "0.7.1"; + sha256 = "1n03znacq7sf180lzn9qzqa0vllql0ii0dbhz9kpckyzhv657p5f"; } diff --git a/ops/version.nix b/ops/version.nix index 482f257..ae7c2ae 100644 --- a/ops/version.nix +++ b/ops/version.nix @@ -1 +1 @@ -"0.7.0" +"0.7.1" diff --git a/packages/hix/hix.cabal b/packages/hix/hix.cabal index 09f35e3..5e52b90 100644 --- a/packages/hix/hix.cabal +++ b/packages/hix/hix.cabal @@ -5,7 +5,7 @@ cabal-version: 2.2 -- see: https://github.com/sol/hpack name: hix -version: 0.7.0 +version: 0.7.1 synopsis: Haskell/Nix development build tools description: See https://hackage.haskell.org/package/hix/docs/Hix.html category: Build diff --git a/readme.md b/readme.md index ed2a792..cd874be 100644 --- a/readme.md +++ b/readme.md @@ -21,7 +21,7 @@ You can convert an existing project with Cabal files by executing this command i ``` nix run 'https://flakehub.com/f/tek/hix/~0.7.tar.gz#bootstrap' -nix run 'github:tek/hix?ref=0.7.0#bootstrap' +nix run 'github:tek/hix?ref=0.7.1#bootstrap' ``` You can create a new project in the current directory: