Skip to content

Commit

Permalink
Release 0.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
tek committed Sep 24, 2023
1 parent 78fafc1 commit afcd092
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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.6

* Expose environment packages as `legacyPackages.<system>.<env>.<package>` for each entry in `ghcVersions`.
* Expose local packages, `ghc` and `pkgs` for each env as `legacyPackages.<system>.env.<env>.{<package>,ghc,pkgs}`.
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.5";
inputs.hix.url = "github:tek/hix?ref=0.6.6";
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.5";
inputs.hix.url = "github:tek/hix?ref=0.6.6";
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 @@ -273,7 +273,7 @@ in {

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

hixVersion = "0.6.5";
hixVersion = "0.6.6";

};
};
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.5#bootstrap'
nix run 'github:tek/hix?ref=0.6.6#bootstrap'
```

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

0 comments on commit afcd092

Please sign in to comment.