crypton-asn1-parse 0.9.6 → 0.10.0
raw patch · 2 files changed
+53/−47 lines, 2 filesdep ~crypton-asn1-typesPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: crypton-asn1-types
API changes (from Hackage documentation)
Files
- CHANGELOG.md +8/−2
- crypton-asn1-parse.cabal +45/−45
CHANGELOG.md view
@@ -6,8 +6,14 @@ and this project adheres to the [Haskell Package Versioning Policy](https://pvp.haskell.org/). -## 0.9.6 +## 0.10.0 - 2025-08-01 +* Depend indirectly on `time-hourglass`, rather than `hourglass`. The fields of + the `ASNTime` data constructor of data type `ASN1` are now types provided by + the former package. + +## 0.9.6 - 2025-07-20 + * Move library modules to directory `src`. * Drop support for GHC < 8.8. * Depend on `crypton-asn1-types >= 0.3.6` and drop dependency on @@ -16,7 +22,7 @@ * Use `other-extensions` field in Cabal file. * Cabal file specifies `cabal-version: 1.22` (not `1.18`). -## 0.9.5 +## 0.9.5 - 2025-07-13 * Rename `asn1-parse-0.9.5` package as `crypton-asn1-parse-0.9.5`. * Depend on `crypton-asn1-types` and `crypton-asn1-encoding`, rather than
crypton-asn1-parse.cabal view
@@ -1,46 +1,46 @@ cabal-version: 1.22 ---- This file has been generated from package.yaml by hpack version 0.38.1.------ see: https://github.com/sol/hpack--name: crypton-asn1-parse-version: 0.9.6-synopsis: A monadic parser combinator for a ASN.1 stream.-description: A library providing a monadic parser combinator for use with a stream of- Abstract Syntax Notation One (ASN.1) standard values.-category: Data-stability: experimental-homepage: https://github.com/mpilgrem/crypton-asn1-bug-reports: https://github.com/mpilgrem/crypton-asn1/issues-author: Vincent Hanquez <vincent@snarc.org>-maintainer: Mike Pilgrem <public@pilgrem.com>,- Kazu Yamamoto <kazu@iij.ad.jp>-copyright: Vincent Hanquez <vincent@snarc.org>-license: BSD3-license-file: LICENSE-build-type: Simple-extra-doc-files:- CHANGELOG.md- README.md--source-repository head- type: git- location: https://github.com/mpilgrem/crypton-asn1- subdir: parse--library- exposed-modules:- Data.ASN1.Parse- reexported-modules:- Data.ASN1.Types- hs-source-dirs:- src- other-extensions:- LambdaCase- ghc-options: -Wall- build-depends:- base >=4.13 && <5- , bytestring- , crypton-asn1-types >=0.3.6 && <0.4- default-language: Haskell98+ +-- This file has been generated from package.yaml by hpack version 0.38.1. +-- +-- see: https://github.com/sol/hpack + +name: crypton-asn1-parse +version: 0.10.0 +synopsis: A monadic parser combinator for a ASN.1 stream. +description: A library providing a monadic parser combinator for use with a stream of + Abstract Syntax Notation One (ASN.1) standard values. +category: Data +stability: experimental +homepage: https://github.com/mpilgrem/crypton-asn1 +bug-reports: https://github.com/mpilgrem/crypton-asn1/issues +author: Vincent Hanquez <vincent@snarc.org> +maintainer: Mike Pilgrem <public@pilgrem.com>, + Kazu Yamamoto <kazu@iij.ad.jp> +copyright: Vincent Hanquez <vincent@snarc.org> +license: BSD3 +license-file: LICENSE +build-type: Simple +extra-doc-files: + CHANGELOG.md + README.md + +source-repository head + type: git + location: https://github.com/mpilgrem/crypton-asn1 + subdir: parse + +library + exposed-modules: + Data.ASN1.Parse + reexported-modules: + Data.ASN1.Types + hs-source-dirs: + src + other-extensions: + LambdaCase + ghc-options: -Wall + build-depends: + base >=4.13 && <5 + , bytestring + , crypton-asn1-types ==0.4.* + default-language: Haskell98