aeson-schema 0.4.1.3 → 0.4.2.0
raw patch · 3 files changed
+5/−7 lines, 3 filesdep ~QuickCheck
Dependency ranges changed: QuickCheck
Files
- CHANGELOG.md +3/−1
- aeson-schema.cabal +2/−2
- src/Data/Aeson/TH/Lift.hs +0/−4
CHANGELOG.md view
@@ -1,5 +1,7 @@-# 0.4.1.3+# 0.4.2.0 - Bump upper bounds on aeson again, more TH fixing+- Bump QuickCheck version bound+- Remove orphan Lift instance for Text # 0.4.1.2 - Bump upper bounds on aeson and newest TH
aeson-schema.cabal view
@@ -1,5 +1,5 @@ name: aeson-schema-version: 0.4.1.3+version: 0.4.2.0 synopsis: Haskell JSON schema validator and parser generator description: This library provides validation of JSON values against schemata. Given a schema, it can also produce data types corresponding to the schema and a parser. homepage: https://github.com/Fuuzetsu/aeson-schema@@ -46,7 +46,7 @@ th-lift >= 0.7 && < 0.8, mtl >= 2 && < 3, transformers >= 0.3.0.0 && < 0.6,- QuickCheck >= 2.4.2 && < 2.12,+ QuickCheck >= 2.4.2 && < 2.15, syb >= 0.4.4 && < 0.8, bytestring >= 0.9.2.1 && < 0.11, scientific >= 0.3.3.7 && < 0.4,
src/Data/Aeson/TH/Lift.hs view
@@ -6,12 +6,8 @@ import qualified Data.HashMap.Lazy as HM import qualified Data.Scientific as S-import Data.Text (Text, pack, unpack) import qualified Data.Vector as V import Language.Haskell.TH.Syntax (Lift (..))--instance Lift Text where- lift txt = [| pack $(lift (unpack txt)) |] #if ! MIN_VERSION_template_haskell(2,10,0) instance Lift Double where