Skip to content

Commit

Permalink
Release 0.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tek committed Sep 26, 2023
1 parent bfd5103 commit 7c012b3
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Unreleased
# 0.6.7

* The option `hackage.add` allows changed files to be git-added, but not committed, during release when `hackage.commit`
is `false`.
Expand Down
2 changes: 1 addition & 1 deletion examples/doc-env-selection/flake.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
description = "hix test project";
inputs.hix.url = "github:tek/hix?ref=0.6.6";
inputs.hix.url = "github:tek/hix?ref=0.6.7";
outputs = {hix, ...}: hix ({config, ...}: {
envs = {
one.env = { number = 1; };
Expand Down
2 changes: 1 addition & 1 deletion examples/doc-packages/flake.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
description = "Example";
inputs.hix.url = "github:tek/hix?ref=0.6.6";
inputs.hix.url = "github:tek/hix?ref=0.6.7";
outputs = {hix, ...}: hix {
packages.parser = {
src = ./.;
Expand Down
2 changes: 1 addition & 1 deletion modules/basic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ in {

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

hixVersion = "0.6.6";
hixVersion = "0.6.7";

};
};
Expand Down
2 changes: 1 addition & 1 deletion modules/cli.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ in {
} // (
if config.internal.hixCli.dev
then { hix = minimal (source.package ../. "hix"); }
else { hix = jailbreak (minimal (hackage "0.6.2" "1f1qszzriap9m8sf4v3ycj4zvv54v3rkd480vfnw35ajswqjzjhw")); }
else { hix = jailbreak (minimal (hackage "0.6.7" "1kcab39rwangb4m1viw58ppvf1ps4i75i2dgapzyqklq87f1bmpi")); }
);

ghc = {
Expand Down
2 changes: 1 addition & 1 deletion ops/version.nix
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"0.6.2"
"0.6.7"
2 changes: 1 addition & 1 deletion packages/hix/hix.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 2.2
-- see: https://github.com/sol/hpack

name: hix
version: 0.6.2
version: 0.6.7
synopsis: Haskell/Nix development build tools
description: See https://hackage.haskell.org/package/hix/docs/Hix.html
category: Build
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.tar.gz#bootstrap'
nix run 'github:tek/hix?ref=0.6.6#bootstrap'
nix run 'github:tek/hix?ref=0.6.7#bootstrap'
```

You can create a new project in the current directory:
Expand Down

0 comments on commit 7c012b3

Please sign in to comment.