Skip to content

Commit

Permalink
Prepare release 0.2.17.0 (#369)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjakobi authored Mar 6, 2022
1 parent 42a25db commit d4e31f6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@

* [Expose internal constructors for `HashSet`, `Array` and `MArray`](https://github.com/haskell-unordered-containers/unordered-containers/pull/347)

* [Tweak internal `Array.insertM` function](https://github.com/haskell-unordered-containers/unordered-containers/pull/359)

* [Drop support for GHC 8.0](https://github.com/haskell-unordered-containers/unordered-containers/pull/354)

* [Drop support for `hashable < 1.2.5`](https://github.com/haskell-unordered-containers/unordered-containers/pull/355)

* Various cleanup and documentation improvements

[0.2.17.0]: https://github.com/haskell-unordered-containers/unordered-containers/compare/v0.2.16.0...v0.2.17.0

## [0.2.16.0]
Expand Down
1 change: 1 addition & 0 deletions Data/HashMap/Internal/Array.hs
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,7 @@ fromList' n xs0 =
go (!x:xs) mary i = do write mary i x
go xs mary (i+1)

-- | @since 0.2.17.0
instance TH.Lift a => TH.Lift (Array a) where
#if MIN_VERSION_template_haskell(2,16,0)
liftTyped ar = [|| fromList' arlen arlist ||]
Expand Down
2 changes: 1 addition & 1 deletion unordered-containers.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: unordered-containers
version: 0.2.16.0
version: 0.2.17.0
synopsis: Efficient hashing-based container types
description:
Efficient hashing-based container types. The containers have been
Expand Down

0 comments on commit d4e31f6

Please sign in to comment.