birds-of-paradise 0.1.0.0 → 0.1.1.0
raw patch · 3 files changed
+10/−5 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Data.Function.Combinator.Birds: omega :: a
Files
- CHANGELOG.md +4/−0
- birds-of-paradise.cabal +1/−1
- src/Data/Function/Combinator/Birds.hs +5/−4
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for birds-of-paradise +## 0.1.1.0 -- 2020-05-19++* support omega! :-p+ ## 0.1.0.0 -- 2020-05-19 * First chirping.
birds-of-paradise.cabal view
@@ -4,7 +4,7 @@ -- http://haskell.org/cabal/users-guide/ name: birds-of-paradise-version: 0.1.0.0+version: 0.1.1.0 synopsis: Birds of Paradise description: Birds of Paradise is yet another SK combinator library. homepage: https://github.com/cutsea110/birds-of-paradise.git
src/Data/Function/Combinator/Birds.hs view
@@ -47,7 +47,7 @@ , vireo'' , kite- -- , omega+ , omega , konstantMocker , crossedKonstantMocker , theta@@ -239,10 +239,11 @@ kite :: a -> b -> b kite _ y = y --- FIXME: Omega is missing because it will fail to compile. :-( -- | Omega--- omega :: a--- omega = mockingbird mockingbird+-- The omega bird looks as mockingbird mockingbird.+-- But, I've implemented this as itself, because omega isn't going to stop anyway.+omega :: a+omega = omega -- ^ mockingbird mockingbird -- | KM konstantMocker :: c -> (a -> b) -> b