construct 0.3 → 0.3.0.1
raw patch · 2 files changed
+11/−7 lines, 2 filesdep ~bytestringdep ~input-parsersdep ~monoid-subclassesPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: bytestring, input-parsers, monoid-subclasses
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- construct.cabal +7/−7
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for construct +## 0.3.0.1 -- 2021-03-07++* Increment the dependencies' upper bounds+ ## 0.3 -- 2020-07-18 * Import the Input[Char]Parser classes from the `input-parsers` package
construct.cabal view
@@ -1,6 +1,6 @@ cabal-version: >=1.10 name: construct-version: 0.3+version: 0.3.0.1 synopsis: Haskell version of the Construct library for easy specification of file formats description: A Haskell version of the <https://construct.readthedocs.io/en/latest/intro.html Construct> library for Python. A@@ -29,12 +29,12 @@ exposed-modules: Construct, Construct.Bits, Construct.Classes other-modules: Construct.Internal build-depends: base >=4.11 && <5,- bytestring >= 0.10 && < 0.11,+ bytestring >= 0.10 && < 0.12, text >= 0.10 && < 1.3,- monoid-subclasses >= 1.0 && < 1.1,+ monoid-subclasses >= 1.0 && < 1.2, incremental-parser >= 0.5 && < 0.6, parsers >= 0.11 && < 0.13,- input-parsers < 0.2,+ input-parsers < 0.3, attoparsec >= 0.12 && < 0.14, cereal >= 0.5 && < 0.6, rank2classes >= 1 && < 1.5@@ -49,7 +49,7 @@ other-modules: README ghc-options: -threaded -pgmL markdown-unlit build-depends: base, construct,- bytestring >= 0.10 && < 0.11, incremental-parser >= 0.5 && < 0.6, rank2classes >= 1.0.2 && < 1.5,+ bytestring >= 0.10 && < 0.12, incremental-parser >= 0.5 && < 0.6, rank2classes >= 1.0.2 && < 1.5, doctest >= 0.8 build-tool-depends: markdown-unlit:markdown-unlit >= 0.5 && < 0.6 x-doctest-options: -XTypeApplications@@ -58,8 +58,8 @@ type: exitcode-stdio-1.0 hs-source-dirs: test build-depends: base >=4.9 && < 5, construct,- bytestring < 0.11, text < 1.3, cereal, rank2classes >= 1.0.2 && < 1.5,- monoid-subclasses >= 1.0 && < 1.1, incremental-parser < 0.6, attoparsec >= 0.12 && < 0.14,+ bytestring < 0.12, text < 1.3, cereal, rank2classes >= 1.0.2 && < 1.5,+ monoid-subclasses >= 1.0 && < 1.2, incremental-parser < 0.6, attoparsec >= 0.12 && < 0.14, directory < 2, filepath < 1.5, tasty >= 0.7, tasty-hunit main-is: Test.hs