changelog: group

This commit is contained in:
Sridhar Ratnakumar 2024-03-29 12:09:04 -04:00
parent 51bcbc2719
commit f12f4bbc93

View File

@ -1,19 +1,21 @@
# Revision history for haskell-flake
## Unreleased
## Unreleased (0.5.0)
- #210: Add `extraLibraries` to `settings` module.
- #277: Add `otherOverlays` option to add custom Haskell package overlays.
- #225: settings: add `removeReferencesTo`
- #215: Improved debug logging.
- #216: Remove `debug` option (pass `--trace-verbose` to nix instead)
- Fixes
- #222: Improve `cabal.project` parser by handling files not ending with newline
- #223 Make `devShell.tools` a `lazyAttrsOf` (lazy evaluation of values)
- Breaking changes
- #221: Switch to `buildFromSdist`, to allow using non-standard package sets (wherein `cabal-install` is otherwise built without using user's overrides)
- #253: Enable controlling `buildFromSdist` through `settings.<name>.buildFromSdist`. (This was turned off by default originally, but was turned on by default in #286)
- #271: Change all `types.attrsOf` to `types.lazyAttrsOf`. If you use `lib.mkIf` for `attrsOf` values (not `submodule` options), use `lib.optionalAttrs` instead. This fixes #270 (`basePackages`) and improves performance.
- Enhancements
- `settings` module:
- #210: Add `extraLibraries` to `settings` module.
- #225: Add `removeReferencesTo` to `settings` module.
- #277: Add `otherOverlays` option to add custom Haskell package overlays.
- #215: Improved debug logging.
- #216: Remove `debug` option (pass `--trace-verbose` to nix instead)
- Fixes
- #222: Improve `cabal.project` parser by handling files not ending with newline
- #223 Make `devShell.tools` a `lazyAttrsOf` (lazy evaluation of values)
- #271: Change all `types.attrsOf` to `types.lazyAttrsOf`. If you use `lib.mkIf` for `attrsOf` values (not `submodule` options), use `lib.optionalAttrs` instead. This fixes #270 (`basePackages`) and improves performance.
## 0.4.0 (Aug 22, 2023)