rebase 1.1 → 1.1.1
raw patch · 4 files changed
+19/−1 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- library/Rebase/Data/Profunctor/Choice.hs +7/−0
- library/Rebase/Data/Profunctor/Strong.hs +7/−0
- library/Rebase/Prelude.hs +2/−0
- rebase.cabal +3/−1
+ library/Rebase/Data/Profunctor/Choice.hs view
@@ -0,0 +1,7 @@+module Rebase.Data.Profunctor.Choice+(+ module Data.Profunctor.Choice+)+where++import Data.Profunctor.Choice
+ library/Rebase/Data/Profunctor/Strong.hs view
@@ -0,0 +1,7 @@+module Rebase.Data.Profunctor.Strong+(+ module Data.Profunctor.Strong+)+where++import Data.Profunctor.Strong
library/Rebase/Prelude.hs view
@@ -24,6 +24,8 @@ -- profunctors ------------------------- import Rebase.Data.Profunctor.Unsafe as Exports+import Rebase.Data.Profunctor.Choice as Exports+import Rebase.Data.Profunctor.Strong as Exports -- contravariant -------------------------
rebase.cabal view
@@ -1,7 +1,7 @@ name: rebase version:- 1.1+ 1.1.1 synopsis: A more progressive alternative to the "base" package description:@@ -246,6 +246,8 @@ Rebase.Data.Functor.Contravariant.Divisible Rebase.Data.Profunctor Rebase.Data.Profunctor.Unsafe+ Rebase.Data.Profunctor.Strong+ Rebase.Data.Profunctor.Choice Rebase.Data.Semigroup Rebase.Data.List.NonEmpty Rebase.Data.Bifunctor.Apply