packages feed

these-optics 1.0.1 → 1.0.1.1

raw patch · 2 files changed

+2/−2 lines, 2 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

src/Data/These/Optics.hs view
@@ -86,5 +86,5 @@ instance (a ~ a', b ~ b') => Each (Either () ()) (These a a') (These b b') a b where     each = itraversalVL aux where         aux f (This a)    = This <$> f (Left ()) a-        aux f (That b)    = This <$> f (Right ()) b+        aux f (That b)    = That <$> f (Right ()) b         aux f (These a b) = These <$> f (Left ()) a <*> f (Right ()) b
these-optics.cabal view
@@ -1,6 +1,6 @@ cabal-version:      >=1.10 name:               these-optics-version:            1.0.1+version:            1.0.1.1 synopsis:           Optics for These homepage:           https://github.com/isomorphism/these license:            BSD3