Skip to content

Commit d4e31f6

Browse files
authored
Prepare release 0.2.17.0 (#369)
1 parent 42a25db commit d4e31f6

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

CHANGES.md

+8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88

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

11+
* [Tweak internal `Array.insertM` function](https://github.com/haskell-unordered-containers/unordered-containers/pull/359)
12+
13+
* [Drop support for GHC 8.0](https://github.com/haskell-unordered-containers/unordered-containers/pull/354)
14+
15+
* [Drop support for `hashable < 1.2.5`](https://github.com/haskell-unordered-containers/unordered-containers/pull/355)
16+
17+
* Various cleanup and documentation improvements
18+
1119
[0.2.17.0]: https://github.com/haskell-unordered-containers/unordered-containers/compare/v0.2.16.0...v0.2.17.0
1220

1321
## [0.2.16.0]

Data/HashMap/Internal/Array.hs

+1
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,7 @@ fromList' n xs0 =
489489
go (!x:xs) mary i = do write mary i x
490490
go xs mary (i+1)
491491

492+
-- | @since 0.2.17.0
492493
instance TH.Lift a => TH.Lift (Array a) where
493494
#if MIN_VERSION_template_haskell(2,16,0)
494495
liftTyped ar = [|| fromList' arlen arlist ||]

unordered-containers.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: unordered-containers
2-
version: 0.2.16.0
2+
version: 0.2.17.0
33
synopsis: Efficient hashing-based container types
44
description:
55
Efficient hashing-based container types. The containers have been

0 commit comments

Comments
 (0)