Skip to content

Commit

Permalink
Drop math dep; update imports (#133)
Browse files Browse the repository at this point in the history
* Drop math dep; update imports

* Add changelog entry
  • Loading branch information
JordanMartinez authored Mar 28, 2022
1 parent 9472fbb commit 9e2efef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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

0 comments on commit 9e2efef

Please sign in to comment.