composition-prelude 2.0.2.0 → 2.0.2.1
raw patch · 3 files changed
+8/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- composition-prelude.cabal +1/−1
- src/Control/Composition.hs +3/−0
CHANGELOG.md view
@@ -1,5 +1,9 @@ # composition-prelude +# 2.0.2.1++ * Polish documentation+ # 2.0.2.0 * Add `$.`
composition-prelude.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: composition-prelude-version: 2.0.2.0+version: 2.0.2.1 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2017-2018 Vanessa McHale
src/Control/Composition.hs view
@@ -91,6 +91,7 @@ both :: (a -> b) -> (a, a) -> (b, b) both = join (***) +-- | @since 2.0.1.0 dup :: a -> (a, a) dup = join (,) @@ -103,6 +104,8 @@ -- to -- -- > between .$ (char '"')+--+-- @since 2.0.2.0 (.$) :: Monad m => m (m a) -> m a (.$) = join