Skip to content

Commit 9664e94

Browse files
Drop math dep; update imports (#167)
* Drop math dep; update imports * Add changelog entry
1 parent 8283d3e commit 9664e94

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ New features:
3131
Bugfixes:
3232

3333
Other improvements:
34+
- Drop `math` dependency; update imports (#167 by @JordanMartinez)
35+
3436
## [v8.4.0](https://github.com/purescript-contrib/purescript-parsing/releases/tag/v8.4.0) - 2022-03-15
3537

3638
New features:

bower.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
"purescript-identity": "master",
2222
"purescript-integers": "master",
2323
"purescript-lists": "master",
24-
"purescript-math": "master",
2524
"purescript-maybe": "master",
2625
"purescript-newtype": "master",
2726
"purescript-numbers": "master",

spago.dhall

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
, "integers"
1313
, "lazy"
1414
, "lists"
15-
, "math"
1615
, "maybe"
1716
, "newtype"
1817
, "numbers"

src/Text/Parsing/Parser/Token.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ import Data.List (List(..))
3636
import Data.List as List
3737
import Data.List.NonEmpty (NonEmptyList)
3838
import Data.Maybe (Maybe(..), maybe)
39+
import Data.Number (pow)
3940
import Data.String (null, toLower)
4041
import Data.String.CodePoints (codePointFromChar)
4142
import Data.String.CodeUnits (singleton, toChar) as CodeUnits
4243
import Data.String.CodeUnits as SCU
4344
import Data.String.Unicode as Unicode
4445
import Data.Tuple (Tuple(..))
45-
import Math (pow)
4646
import Text.Parsing.Parser (ParseState(..), ParserT, consume, fail)
4747
import Text.Parsing.Parser.Combinators (between, choice, notFollowedBy, option, sepBy, sepBy1, skipMany, skipMany1, try, tryRethrow, (<?>), (<??>))
4848
import Text.Parsing.Parser.Pos (Position)

0 commit comments

Comments
 (0)