CHANGELOG: 0.10.0 (#713)

* Prepare release 0.9.2

* CHANGELOG: m upd to 0.9.{2,1}

* Update changelog and version

* CHANGELOG: m upd: unification of structure, forming 0.10.1

Breaking changes into "Breaking" section.

Miscellaneous changes into "Misc" section.

Co-authored-by: Simon Jakobi <simon.jakobi@gmail.com>
This commit is contained in:
Anton Latukha 2020-09-12 19:56:56 +03:00 committed by GitHub
parent 2dc211314e
commit 5227a2d27f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 6 deletions

View file

@ -1,29 +1,40 @@
# Changelog # Changelog
## [0.10.0](https://github.com/haskell-nix/hnix/compare/0.9.1...0.10.0) (2020-09-12)
* Breaking:
* [Remove `ToJSON` and `FromJSON` instances for `NExpr`](https://github.com/haskell-nix/hnix/pull/699)
* This also removes the JSON output feature for unevaluated expression trees.
* Misc:
* [Update `data-fix` dependency to `>= 0.3.0 && < 0.4`](https://github.com/haskell-nix/hnix/pull/686)
* [Update `prettyprinter` dependency to `= 1.7.0 && < 1.8`](https://github.com/haskell-nix/hnix/pull/679)
* [CLI recieved `--version` option](https://github.com/haskell-nix/hnix/pull/703)
## [0.9.1](https://github.com/haskell-nix/hnix/compare/0.9.0...0.9.1) (2020-07-13) ## [0.9.1](https://github.com/haskell-nix/hnix/compare/0.9.0...0.9.1) (2020-07-13)
* Additional: * Misc:
* REPL improvements * REPL improvements
* Better tab completion * Better tab completion
* Multi-line input * Multi-line input
* Support for passing evaluated expression result of `hnix --eval -E` * Support for passing evaluated expression result of `hnix --eval -E`
to REPL as `input` variable. to REPL as `input` variable.
* Support for loading `.hnixrc` from current directory * Support for loading `.hnixrc` from current directory
* `builtins.nixVersion` bumped from 2.0 to 2.3 * Reporting of `builtins.nixVersion` bumped from 2.0 to 2.3
* Dependencies: * Dependencies:
* Freed from: `interpolate`, `contravariant`, `semigroups`, `generic-random`, `tasty-quickcheck` * Freed from: `interpolate`, `contravariant`, `semigroups`, `generic-random`, `tasty-quickcheck`
* `repline` now `>= 0.4.0.0 && < 0.5` * `repline >= 0.4.0.0 && < 0.5`
## [0.9.0](https://github.com/haskell-nix/hnix/compare/0.8.0...0.9.0) (2020-06-15) ## [0.9.0](https://github.com/haskell-nix/hnix/compare/0.8.0...0.9.0) (2020-06-15)
* Changelog started. Previous release was `0.8.0`. In new release: * Changelog started. Previous release was `0.8.0`. In new release:
* Major breaking: * Breaking:
* Removed instances due to migration to `haskeline >= 0.8 && < 0.9`: * Removed instances due to migration to `haskeline >= 0.8 && < 0.9`:
* `instance MonadException m => MonadException(StateT(HashMap FilePath NExprLoc) m)` * `instance MonadException m => MonadException(StateT(HashMap FilePath NExprLoc) m)`
* `instance MonadException m => MonadException(Fix1T StandardTF m)` * `instance MonadException m => MonadException(Fix1T StandardTF m)`
* Additional: * Misc:
* Library: Official support for `GHC 8.4 - 8.10` * Library: Official support for `GHC 8.4 - 8.10`
--- ---

View file

@ -1,5 +1,5 @@
name: hnix name: hnix
version: 0.9.1 version: 0.10.0
synopsis: Haskell implementation of the Nix language synopsis: Haskell implementation of the Nix language
description: Haskell implementation of the Nix language. description: Haskell implementation of the Nix language.
category: System, Data, Nix category: System, Data, Nix