Skip to content

Commit 8892f1f

Browse files
authored
Merge pull request #61 from haskellari/prepare-0.4.1.1
Prepare 0.4.1.1
2 parents e8d52bf + f93bcdf commit 8892f1f

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.1.1
2+
3+
- Support `base-4.16` (GHC-9.2)
4+
15
## 0.2.1
26

37
- Support `aeson-2.0.0.0`

src/Data/TreeDiff/Parser.hs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,18 @@ module Data.TreeDiff.Parser (
66
exprParser
77
) where
88

9-
import Control.Applicative (optional, (<|>))
9+
import Control.Applicative (many, optional, (<|>))
1010
import Data.Char (chr, isAlphaNum, isPunctuation, isSymbol)
1111
import Prelude ()
1212
import Prelude.Compat
1313

14-
import Text.Parser.Char
15-
import Text.Parser.Combinators
14+
import Text.Parser.Char (CharParsing (anyChar, char, satisfy))
15+
import Text.Parser.Combinators (between, (<?>))
1616
import Text.Parser.Token
17+
(TokenParsing (highlight, token), braces, brackets, commaSep,
18+
hexadecimal, parens, symbolic)
1719
import Text.Parser.Token.Highlight
20+
(Highlight (Identifier, StringLiteral, Symbol))
1821

1922
import Data.TreeDiff.Expr
2023

tree-diff.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: tree-diff
3-
version: 0.2.1
3+
version: 0.2.1.1
44
synopsis: Diffing of (expression) trees.
55
category: Data, Testing
66
description:

0 commit comments

Comments
 (0)