packages feed

ghc-syntax-highlighter 0.0.13.0 → 0.0.14.0

raw patch · 4 files changed

+10/−5 lines, 4 filesdep ~ghc-lib-parser

Dependency ranges changed: ghc-lib-parser

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+## GHC syntax highlighter 0.0.14.0++* Uses `ghc-lib-parser-9.14.x.x`.+ ## GHC syntax highlighter 0.0.13.0  * Uses `ghc-lib-parser-9.12.x.x`.
GHC/SyntaxHighlighter.hs view
@@ -137,7 +137,6 @@       L.mkParserOpts         (ES.fromList enabledExts)         diagOpts-        []         True -- safe imports         True -- keep Haddock tokens         True -- keep comment tokens@@ -362,6 +361,8 @@   L.ITqQuasiQuote _ -> SymbolTok   L.ITdollar -> SymbolTok   L.ITdollardollar -> SymbolTok+  L.ITsplice -> SymbolTok+  L.ITquote -> SymbolTok   -- Arrow notation   L.ITproc -> KeywordTok   L.ITrec -> KeywordTok
README.md view
@@ -4,7 +4,7 @@ [![Hackage](https://img.shields.io/hackage/v/ghc-syntax-highlighter.svg?style=flat)](https://hackage.haskell.org/package/ghc-syntax-highlighter) [![Stackage Nightly](http://stackage.org/package/ghc-syntax-highlighter/badge/nightly)](http://stackage.org/nightly/package/ghc-syntax-highlighter) [![Stackage LTS](http://stackage.org/package/ghc-syntax-highlighter/badge/lts)](http://stackage.org/lts/package/ghc-syntax-highlighter)-![CI](https://github.com/mrkkrp/ghc-syntax-highlighter/workflows/CI/badge.svg?branch=master)+[![CI](https://github.com/mrkkrp/ghc-syntax-highlighter/actions/workflows/ci.yaml/badge.svg)](https://github.com/mrkkrp/ghc-syntax-highlighter/actions/workflows/ci.yaml)  This is a syntax highlighter library for Haskell using the lexer of GHC. 
ghc-syntax-highlighter.cabal view
@@ -1,11 +1,11 @@ cabal-version:   2.4 name:            ghc-syntax-highlighter-version:         0.0.13.0+version:         0.0.14.0 license:         BSD-3-Clause license-file:    LICENSE.md maintainer:      Mark Karpov <markkarpov92@gmail.com> author:          Mark Karpov <markkarpov92@gmail.com>-tested-with:     ghc ==9.8.4 ghc ==9.10.1 ghc ==9.12.1+tested-with:     ghc ==9.10.3 ghc ==9.12.2 ghc ==9.14.1 homepage:        https://github.com/mrkkrp/ghc-syntax-highlighter bug-reports:     https://github.com/mrkkrp/ghc-syntax-highlighter/issues synopsis:        Syntax highlighter for Haskell using the lexer of GHC@@ -31,7 +31,7 @@     default-language: GHC2021     build-depends:         base >=4.17 && <5,-        ghc-lib-parser >=9.12 && <9.13,+        ghc-lib-parser >=9.14 && <9.15,         text >=0.2 && <2.2      if flag(dev)