hedgehog-gen-json 0.2.2 → 0.3.0
raw patch · 2 files changed
+7/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Hedgehog.Gen.JSON: arrayRange :: Lens' Ranges ArrayRange
+ Hedgehog.Gen.JSON: integerRange :: Lens' Ranges IntegerRange
+ Hedgehog.Gen.JSON: numberRange :: Lens' Ranges NumberRange
+ Hedgehog.Gen.JSON: objectRange :: Lens' Ranges ObjectRange
+ Hedgehog.Gen.JSON: stringRange :: Lens' Ranges StringRange
Files
- hedgehog-gen-json.cabal +2/−2
- src/Hedgehog/Gen/JSON.hs +5/−0
hedgehog-gen-json.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 3b530b46734fb90d5dd564dcd255eba24460177c1498ef8b6e92e04c0f93650c+-- hash: ddf576825a40f267efcc17461a489d807946f4f07d9029d265c9d07b3a2adf74 name: hedgehog-gen-json-version: 0.2.2+version: 0.3.0 synopsis: JSON generators for Hedgehog description: Generate JSON values for Hedgehog tests category: Test
src/Hedgehog/Gen/JSON.hs view
@@ -15,6 +15,11 @@ , ArrayRange(..) , ObjectRange(..) , sensibleRanges+ , numberRange+ , integerRange+ , stringRange+ , arrayRange+ , objectRange ) where import Control.Monad.Catch (MonadThrow, throwM)