packages feed

crypton-x509-store 1.6.10 → 1.6.11

raw patch · 2 files changed

+7/−1 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Data.X509.CertificateStore: isEmptyCertificateStore :: CertificateStore -> Bool

Files

Data/X509/CertificateStore.hs view
@@ -2,6 +2,7 @@  module Data.X509.CertificateStore (     CertificateStore,+    isEmptyCertificateStore,     makeCertificateStore,     readCertificateStore,     readCertificates,@@ -37,6 +38,11 @@ data CertificateStore     = CertificateStore (M.Map DistinguishedName SignedCertificate)     | CertificateStores [CertificateStore]++isEmptyCertificateStore :: CertificateStore -> Bool+isEmptyCertificateStore (CertificateStore m) = M.null m+isEmptyCertificateStore (CertificateStores []) = True+isEmptyCertificateStore _ = False  #if MIN_VERSION_base(4,9,0) instance Semigroup CertificateStore where
crypton-x509-store.cabal view
@@ -1,5 +1,5 @@ Name:                crypton-x509-store-version:             1.6.10+version:             1.6.11 Description:         X.509 collection accessing and storing methods for certificate, crl, exception list License:             BSD3 License-file:        LICENSE