record-syntax 0.1.0.0 → 0.1.0.1
raw patch · 3 files changed
+18/−5 lines, 3 filesdep ~conversion-textdep ~parsecPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: conversion-text, parsec
API changes (from Hackage documentation)
Files
- doctest/Main.hs +4/−0
- hspec/Main.hs +11/−2
- record-syntax.cabal +3/−3
doctest/Main.hs view
@@ -23,8 +23,10 @@ "-XDataKinds", "-XDefaultSignatures", "-XDeriveDataTypeable",+ "-XDeriveFoldable", "-XDeriveFunctor", "-XDeriveGeneric",+ "-XDeriveTraversable", "-XEmptyDataDecls", "-XFlexibleContexts", "-XFlexibleInstances",@@ -34,6 +36,7 @@ "-XImpredicativeTypes", "-XLambdaCase", "-XLiberalTypeSynonyms",+ "-XMagicHash", "-XMultiParamTypeClasses", "-XMultiWayIf", "-XNoImplicitPrelude",@@ -50,6 +53,7 @@ "-XTupleSections", "-XTypeFamilies", "-XTypeOperators",+ "-XUnboxedTuples", "-hide-all-packages" ]
hspec/Main.hs view
@@ -3,6 +3,15 @@ main = hspec $ do- context "" $ do- it "" $ do+ context "Head" $ do+ it "No module head" $ do+ pending+ it "No imports" $ do+ pending+ context "Errors" $ do+ it "Record syntax" $ do+ pending+ it "Nested HSE" $ do+ pending+ it "Outer HSE" $ do pending
record-syntax.cabal view
@@ -1,7 +1,7 @@ name: record-syntax version:- 0.1.0.0+ 0.1.0.1 synopsis: A library for parsing and processing the Haskell syntax sprinkled with anonymous records category:@@ -65,10 +65,10 @@ record == 0.4.*, -- haskell-src-exts == 1.16.*,- parsec == 3.*,+ parsec >= 3.1.2 && < 4, -- conversion == 1.*,- conversion-text == 1.*,+ conversion-text >= 1.0.0.2 && < 2, text >= 1 && < 2, -- template-haskell == 2.*,