Skip to content

Commit 535384f

Browse files
authored
Prepare release 0.6.4.1 (#746)
1 parent ddd24d9 commit 535384f

File tree

6 files changed

+29
-5
lines changed

6 files changed

+29
-5
lines changed

containers/changelog.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog for [`containers` package](http://github.com/haskell/containers)
22

3+
## [0.6.4.1]
4+
5+
### Bug fixes
6+
7+
* [Replace value-forcing variants of `compose` with lazy variants.](https://github.com/haskell/containers/pull/745)
8+
* This brings `compose` closer in line with functions like `union` and `intersection` which don't evaluate any map values. (Thanks, Simon Jakobi)
9+
10+
### Additions
11+
12+
* [Add `reverseTopSort` to `Data.Graph`](https://github.com/haskell/containers/pull/638) (Thanks, James Parker)
13+
14+
* [Expose `traverseMaybeWithKey` from `Data.IntMap.{Lazy,Strict}`](https://github.com/haskell/containers/pull/743) (Thanks, Simon
15+
Jakobi)
16+
17+
### Other changes
18+
19+
* Improvements to the testsuite: [#663](https://github.com/haskell/containers/pull/663), [#662](https://github.com/haskell/containers/pull/662) (Thanks, Bertram Felgenhauer)
20+
21+
* [Fix build with `stack test`](https://github.com/haskell/containers/pull/738) (Thanks, Simon Jakobi)
22+
23+
[0.6.4.1]: https://github.com/haskell/containers/compare/v0.6.3.1-release...v0.6.4.1
24+
325
## 0.6.3.1
426

527
### Bug fixes

containers/containers.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: containers
2-
version: 0.6.3.1
2+
version: 0.6.4.1
33
license: BSD3
44
license-file: LICENSE
55
maintainer: libraries@haskell.org

containers/src/Data/Graph.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -619,6 +619,8 @@ topSort :: Graph -> [Vertex]
619619
topSort = reverse . postOrd
620620

621621
-- | Reverse ordering of `topSort`.
622+
--
623+
-- @since 0.6.4
622624
reverseTopSort :: Graph -> [Vertex]
623625
reverseTopSort = postOrd
624626

containers/src/Data/IntMap/Internal.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ disjoint t1@(Bin p1 m1 l1 r1) t2@(Bin p2 m2 l2 r2)
783783
-- ('compose' bc ab '!?') = (bc '!?') <=< (ab '!?')
784784
-- @
785785
--
786-
-- __Note:__ Prior to UNRELEASED, "Data.IntMap.Strict" exposed a version of
786+
-- __Note:__ Prior to v0.6.4, "Data.IntMap.Strict" exposed a version of
787787
-- 'compose' that forced the values of the output 'IntMap'. This version does
788788
-- not force these values.
789789
--
@@ -1896,7 +1896,7 @@ traverseMaybeMissing f = WhenMissing
18961896

18971897
-- | /O(n)/. Traverse keys\/values and collect the 'Just' results.
18981898
--
1899-
-- @since UNRELEASED
1899+
-- @since 0.6.4
19001900
traverseMaybeWithKey
19011901
:: Applicative f => (Key -> a -> f (Maybe b)) -> IntMap a -> f (IntMap b)
19021902
traverseMaybeWithKey f = go

containers/src/Data/IntMap/Strict/Internal.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,7 @@ traverseWithKey f = go
904904

905905
-- | /O(n)/. Traverse keys\/values and collect the 'Just' results.
906906
--
907-
-- @since UNRELEASED
907+
-- @since 0.6.4
908908
traverseMaybeWithKey
909909
:: Applicative f => (Key -> a -> f (Maybe b)) -> IntMap a -> f (IntMap b)
910910
traverseMaybeWithKey f = go

containers/src/Data/Map/Internal.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2106,7 +2106,7 @@ disjoint (Bin _ k _ l r) t
21062106
-- ('compose' bc ab '!?') = (bc '!?') <=< (ab '!?')
21072107
-- @
21082108
--
2109-
-- __Note:__ Prior to UNRELEASED, "Data.Map.Strict" exposed a version of
2109+
-- __Note:__ Prior to v0.6.4, "Data.Map.Strict" exposed a version of
21102110
-- 'compose' that forced the values of the output 'Map'. This version does not
21112111
-- force these values.
21122112
--

0 commit comments

Comments
 (0)