asn1-types 0.3.3 → 0.3.4
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Data/ASN1/Types/String.hs +1/−1
- asn1-types.cabal +1/−1
Data/ASN1/Types/String.hs view
@@ -123,7 +123,7 @@ , toCont (e `shiftR` 6) , toCont e] | otherwise = error "not a valid value"- toCont v = fromIntegral (0xc0 .&. (v .&. 0x3f))+ toCont v = fromIntegral (0x80 .|. (v .&. 0x3f)) decodeASCII :: ByteString -> String decodeASCII = BC.unpack
asn1-types.cabal view
@@ -1,5 +1,5 @@ Name: asn1-types-Version: 0.3.3+Version: 0.3.4 Description: ASN.1 standard types License: BSD3 License-file: LICENSE