hspec-snap 0.4.0.0 → 0.4.0.1
raw patch · 3 files changed
+5/−2 lines, 3 filesdep ~hspec-snapPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
Dependency ranges changed: hspec-snap
API changes (from Hackage documentation)
+ Test.Hspec.Snap: RespCode :: Int -> RespCode
+ Test.Hspec.Snap: newtype RespCode
Files
- CHANGELOG +2/−0
- hspec-snap.cabal +2/−2
- src/Test/Hspec/Snap.hs +1/−0
CHANGELOG view
@@ -1,3 +1,5 @@+0.4.0.1 - 2016-3-23 - Export RespCode.+ 0.4.0.0 - 2015-10-7 - Add response codes to responses. 0.3.3.1 - 2015-9-8 - Upgrade to hspec 2.2 (this is breaking, so we require it).
hspec-snap.cabal view
@@ -1,5 +1,5 @@ name: hspec-snap-version: 0.4.0.0+version: 0.4.0.1 synopsis: A library for testing with Hspec and the Snap Web Framework homepage: https://github.com/dbp/hspec-snap license: BSD3@@ -56,4 +56,4 @@ , text >= 0.11 && < 1.3 , transformers >= 0.3 && < 0.5 , directory >= 1.2 && < 1.3- build-depends: hspec-snap == 0.4.0.0+ build-depends: hspec-snap == 0.4.0.1
src/Test/Hspec/Snap.hs view
@@ -20,6 +20,7 @@ -- * Core data types , TestResponse(..)+ , RespCode(..) , SnapHspecM -- * Factory style test data generation