Skip to content

Commit

Permalink
Merge branch 'main' into fix_nested_HOT
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriella439 authored Nov 24, 2023
2 parents 3f03637 + 8982b76 commit e10f5b9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions dhall/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,12 @@
* If you really don't want to handle the new error-related wrapper, you can
get the old behavior using a partial pattern match (which will be partial,
still an improvement over the previous behavior, which was hanging)
* BREAKING CHANGE: [Records can no longer contain attributes named after language keywords](https://github.com/dhall-lang/dhall-haskell/pull/1801)
* This is a bugfix, because the language standard disallows using
keywords as record labels. However, some users were relying on
this bug.
* If you need to use a keyword as a record label, enclose it in backticks:
``{ `assert` = 1 }``.
* [Fix invalid cache entries](https://github.com/dhall-lang/dhall-haskell/pull/1793)
* The interpreter will now correct cached expressions that are incorrect
and warn you when this happens
Expand Down
2 changes: 1 addition & 1 deletion nix/shared.nix
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ let
releaseName=${name}
${pkgsStaticLinux.coreutils}/bin/install --target-directory "$TMPDIR/inst/bin" -D $src/bin/*
${pkgs.lib.optionalString (manDir != null) ''
${pkgsStaticLinux.coreutils}/bin/install --target-directory "$TMPDIR/inst/share/man" -D ${manDir}/*
${pkgsStaticLinux.coreutils}/bin/install --target-directory "$TMPDIR/inst/share/man/man1" -D ${manDir}/*.1
''}
'';
};
Expand Down

0 comments on commit e10f5b9

Please sign in to comment.