Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Bugfixes:
- `quickCheckPure` and `quickCheckPure'` stack safety (#127)

Other improvements:
- Drop `math` dependency; update imports (#133 by @JordanMartinez)

## [v7.1.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v7.1.0) - 2021-04-27

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
"purescript-lazy": "master",
"purescript-lcg": "master",
"purescript-lists": "master",
"purescript-math": "master",
"purescript-maybe": "master",
"purescript-newtype": "master",
"purescript-nonempty": "master",
"purescript-numbers": "master",
"purescript-partial": "master",
"purescript-prelude": "master",
"purescript-record": "master",
Expand Down
2 changes: 1 addition & 1 deletion src/Test/QuickCheck/Gen.purs
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ import Data.List (List(..), toUnfoldable)
import Data.Maybe (Maybe(..), fromJust)
import Data.Monoid.Additive (Additive(..))
import Data.Newtype (unwrap)
import Data.Number ((%))
import Data.Tuple (Tuple(..), fst, snd)
import Effect (Effect)
import Math ((%))
import Partial.Unsafe (unsafePartial)
import Random.LCG (Seed, lcgPerturb, lcgM, lcgNext, unSeed, randomSeed)

Expand Down