hspec-snap 1.0.2.0 → 1.0.3.0
raw patch · 2 files changed
+9/−5 lines, 2 filesdep ~aesondep ~basedep ~bytestringPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: aeson, base, bytestring
API changes (from Hackage documentation)
Files
- CHANGELOG +2/−0
- hspec-snap.cabal +7/−5
CHANGELOG view
@@ -1,3 +1,5 @@+1.0.3.0 - 2022-01-20 - Support ghc-8.10+ 1.0.2.0 - 2020-03-05 - Support ghc-8.8.2 1.0.1.0 - 2019-05-22 - Support hspec-2.2 through hspec-2.7
hspec-snap.cabal view
@@ -1,5 +1,5 @@ name: hspec-snap-version: 1.0.2.0+version: 1.0.3.0 synopsis: A library for testing with Hspec and the Snap Web Framework homepage: https://github.com/dbp/hspec-snap license: BSD3@@ -9,18 +9,19 @@ extra-source-files: CHANGELOG category: Web, Snap build-type: Simple-cabal-version: >=1.8+cabal-version: 1.18 source-repository head type: git location: https://github.com/dbp/hspec-snap library+ default-language: Haskell2010 exposed-modules: Test.Hspec.Snap hs-source-dirs: src- build-depends: base >= 4.6 && < 4.14- , aeson >= 0.6 && < 1.5- , bytestring >= 0.9 && < 0.11+ build-depends: base >= 4.6 && < 5+ , aeson >= 0.6 && < 1.6+ , bytestring >= 0.9 && < 0.12 , containers >= 0.4 && < 0.7 , digestive-functors >= 0.7 && < 0.9 , hspec >= 2.2 && < 2.8@@ -37,6 +38,7 @@ Test-Suite test-hspec-snap+ default-language: Haskell2010 type: exitcode-stdio-1.0 hs-source-dirs: spec main-is: Main.hs