* Mon Dec 06 2021 Peter Simons <psimons@suse.com>
- Update unordered-containers to version 0.2.16.0.
[#]# [0.2.16.0]
* [Increase maximum branching factor from 16 to 32](https://github.com/haskell-unordered-containers/unordered-containers/pull/317)
* [Tweak `union.goDifferentHash`](https://github.com/haskell-unordered-containers/unordered-containers/pull/277)
* [Fix debug mode bounds check in `cloneM`](https://github.com/haskell-unordered-containers/unordered-containers/pull/331)
* [Remove some old internal compatibility code](https://github.com/haskell-unordered-containers/unordered-containers/pull/334)
[0.2.16.0]: https://github.com/haskell-unordered-containers/unordered-containers/compare/v0.2.15.0...v0.2.16.0
* Wed Nov 10 2021 psimons@suse.com
- Update unordered-containers to version 0.2.15.0.
[#]# [0.2.15.0]
* [Add security advisory regarding hash collision attacks](https://github.com/haskell-unordered-containers/unordered-containers/pull/320)
* [Add support for hashable 1.4](https://github.com/haskell-unordered-containers/unordered-containers/pull/324)
* [Drop support for GHC < 8](https://github.com/haskell-unordered-containers/unordered-containers/pull/323)
[0.2.15.0]: https://github.com/haskell-unordered-containers/unordered-containers/compare/v0.2.14.0...v0.2.15.0
* Sat May 22 2021 psimons@suse.com
- Update unordered-containers to version 0.2.14.0.
[#]# [0.2.14.0]
* [Add `HashMap.mapKeys`.](https://github.com/haskell-unordered-containers/unordered-containers/pull/308) Thanks, Marco Perone!
* [Add instances for `NFData1` and `NFData2`.](https://github.com/haskell-unordered-containers/unordered-containers/pull/314) Thanks, Isaac Elliott and Oleg Grenrus!
* [Fix `@since`-annotation for `compose`.](https://github.com/haskell-unordered-containers/unordered-containers/pull/303) Thanks, @Mathnerd314!
[0.2.14.0]: https://github.com/haskell-unordered-containers/unordered-containers/compare/v0.2.13.0...v0.2.14.0
* Thu Dec 17 2020 Ond?ej SĂșkup <mimi.vx@gmail.com>
- disable %{ix86} build
* Tue Oct 06 2020 psimons@suse.com
- Update unordered-containers to version 0.2.13.0.
Upstream has edited the change log file since the last release in
a non-trivial way, i.e. they did more than just add a new entry
at the top. You can review the file at:
http://hackage.haskell.org/package/unordered-containers-0.2.13.0/src/CHANGES.md
* Tue Aug 18 2020 Peter Simons <psimons@suse.com>
- Replace %setup -q with the more modern %autosetup macro.
* Wed Aug 05 2020 psimons@suse.com
- Update unordered-containers to version 0.2.12.0.
[#]# [0.2.12.0]
* Add `HashMap.isSubmapOf[By]` and `HashSet.isSubsetOf`. Thanks Sven Keidel. ([#282])
* Expose internal modules. ([#283])
* Documentation improvements in `Data.HashSet`, including a beginner-friendly
introduction. Thanks Matt Renaud. ([#267])
* `HashMap[.Strict].alterF`: Skip key deletion for absent keys. ([#288])
* Remove custom `unsafeShift{L,R}` definitions. ([#281])
* Various other documentation improvements.
[0.2.12.0]: https://github.com/haskell-unordered-containers/unordered-containers/compare/v0.2.11.0...v0.2.12.0
[#267]: https://github.com/haskell-unordered-containers/unordered-containers/pull/267
[#281]: https://github.com/haskell-unordered-containers/unordered-containers/pull/281
[#282]: https://github.com/haskell-unordered-containers/unordered-containers/pull/282
[#283]: https://github.com/haskell-unordered-containers/unordered-containers/pull/283
[#288]: https://github.com/haskell-unordered-containers/unordered-containers/pull/288
* Thu Jun 18 2020 psimons@suse.com
- Update unordered-containers to version 0.2.11.0.
[#]# 0.2.11.0
* Add `HashMap.findWithDefault` (soft-deprecates `HashMap.lookupDefault`).
Thanks, Matt Renaud.
* Add `HashMap.fromListWithKey`. Thanks, Josef Svenningsson.
* Add more folding functions and use them in `Foldable` instances. Thanks,
David Feuer.
* Add `HashMap.!?`, a flipped version of `lookup`. Thanks, Matt Renaud.
* Add a `Bifoldable` instance for `HashMap`. Thanks, Joseph Sible.
* Add a `HasCallStack` constraint to `(!)`. Thanks, Roman Cheplyaka.
[#]## Bug fixes
* Fix a space leak affecting updates on keys with hash collisions. Thanks,
Neil Mitchell. ([#254])
* Get rid of some silly thunks that could be left lying around. ([#232]).
Thanks, David Feuer.
[#]## Other changes
* Speed up the `Hashable` instances for `HashMap` and `HashSet`. Thanks,
Edward Amsden.
* Remove a dependency cycle hack from the benchmark suite. Thanks,
Andrew Martin.
* Improve documentation. Thanks, Tristan McLeay, Li-yao Xia, Gareth Smith,
Simon Jakobi, Sergey Vinokurov, and likely others.
[#232]: https://github.com/haskell-unordered-containers/unordered-containers/issues/232
[#254]: https://github.com/haskell-unordered-containers/unordered-containers/issues/254
* Tue Jun 16 2020 Peter Simons <psimons@suse.com>
- Re-generate file with latest version of spec-cleaner.
Version: 0.2.10.0-bp151.1.9
* Sat Jan 19 2019 psimons@suse.com
- Update unordered-containers to version 0.2.10.0.
[#]# 0.2.10.0
* Add `HashMap.alterF`.
* Add `HashMap.keysSet`.
* Make `HashMap.Strict.traverseWithKey` force the results before
installing them in the map.
* Sat Oct 20 2018 Peter Simons <psimons@suse.com>
- Use https URL to refer to bugs.opensuse.org.
* Wed Jul 18 2018 psimons@suse.com
- Cosmetic: replace tabs with blanks, strip trailing white space,
and update copyright headers with spec-cleaner.
* Mon May 14 2018 psimons@suse.com
- Update unordered-containers to version 0.2.9.0.
* Add `Ord/Ord1/Ord2` instances. (Thanks, Oleg Grenrus)
* Use `SmallArray#` instead of `Array#` for GHC versions 7.10 and above.
(Thanks, Dmitry Ivanov)
* Adjust for `Semigroup => Monoid` proposal implementation.
(Thanks, Ryan Scott)
* Fix a strictness bug in `fromListWith`.
* Enable eager blackholing for pre-8.2 GHC versions to work around
a runtime system bug. (Thanks, Ben Gamari)
* Avoid sketchy reimplementation of `ST` when compiling with recent
GHC.