ldap-client 0.4.0 → 0.4.1
raw patch · 2 files changed
+4/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ldap-client.cabal +2/−1
- src/Ldap/Asn1/FromAsn1.hs +2/−0
ldap-client.cabal view
@@ -1,5 +1,5 @@ name: ldap-client-version: 0.4.0+version: 0.4.1 synopsis: Pure Haskell LDAP Client Library description: Pure Haskell LDAP client library implementing (the parts of) RFC 4511.@@ -17,6 +17,7 @@ , GHC == 8.2.2 , GHC == 8.4.4 , GHC == 8.6.5+ , GHC == 8.8.2 extra-source-files: README.md CHANGELOG.md
src/Ldap/Asn1/FromAsn1.hs view
@@ -412,7 +412,9 @@ return x = Parser (\s -> return (s, x)) Parser mx >>= k = Parser (mx >=> \(s', x) -> unParser (k x) s')+#if !__GLASGOW_HASKELL__ >= 86 fail _ = empty+#endif instance MonadPlus (Parser s) where mzero = Parser (\_ -> mzero)