Skip to content

Commit

Permalink
Update changelog, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
treeowl committed Jun 24, 2019
1 parent 1e192e9 commit aaeda19
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions containers/changelog.md
@@ -1,5 +1,13 @@
# Changelog for [`containers` package](http://github.com/haskell/containers)

## 0.6.2.1

* Add `disjoint` for `Map` and `IntMap` (Thanks, Simon Jakobi).

* Fix documentation bugs (Thanks, olligobber).

* Fix unused imports (Thanks, Ben Gamari).

## 0.6.1.1

* Fix Foldable instance for IntMap, which previously placed positively
Expand Down
2 changes: 1 addition & 1 deletion containers/containers.cabal
@@ -1,5 +1,5 @@
name: containers
version: 0.6.1.1
version: 0.6.2.1
license: BSD3
license-file: LICENSE
maintainer: libraries@haskell.org
Expand Down
2 changes: 1 addition & 1 deletion containers/src/Data/IntMap/Internal.hs
Expand Up @@ -741,7 +741,7 @@ unsafeFindMax (Bin _ _ _ r) = unsafeFindMax r
--
-- > disjoint a b == null (intersection a b)
--
-- @since UNRELEASED
-- @since 0.6.2.1
disjoint :: IntMap a -> IntMap b -> Bool
disjoint Nil _ = True
disjoint _ Nil = True
Expand Down
2 changes: 1 addition & 1 deletion containers/src/Data/Map/Internal.hs
Expand Up @@ -2072,7 +2072,7 @@ intersectionWithKey f (Bin _ k x1 l1 r1) t2 = case mb of
-- xs ``disjoint`` ys = null (xs ``intersection`` ys)
-- @
--
-- @since UNRELEASED
-- @since 0.6.2.1

-- See 'Data.Set.Internal.isSubsetOfX' for some background
-- on the implementation design.
Expand Down

0 comments on commit aaeda19

Please sign in to comment.