mono-traversable 1.0.0 → 1.0.0.1
raw patch · 3 files changed
+6/−1 lines, 3 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ Data.NonNull: impureNonNull :: MonoFoldable mono => mono -> NonNull mono
Files
- ChangeLog.md +4/−0
- mono-traversable.cabal +1/−1
- src/Data/NonNull.hs +1/−0
ChangeLog.md view
@@ -1,3 +1,7 @@+## 1.0.0.1++* Add missing export [#101](https://github.com/snoyberg/mono-traversable/pull/101)+ ## 1.0.0 * Implement the cleanups described in [#95](https://github.com/snoyberg/mono-traversable/issues/95)
mono-traversable.cabal view
@@ -1,5 +1,5 @@ name: mono-traversable-version: 1.0.0+version: 1.0.0.1 synopsis: Type classes for mapping, folding, and traversing monomorphic containers description: Monomorphic variants of the Functor, Foldable, and Traversable typeclasses. If you understand Haskell's basic typeclasses, you understand mono-traversable. In addition to what you are used to, it adds on an IsSequence typeclass and has code for marking data structures as non-empty. homepage: https://github.com/snoyberg/mono-traversable
src/Data/NonNull.hs view
@@ -12,6 +12,7 @@ module Data.NonNull ( NonNull , fromNullable+ , impureNonNull , nonNull , toNullable , fromNonEmpty