packages feed

genvalidity-persistent 1.0.0.1 → 1.0.0.2

raw patch · 5 files changed

+12/−3 lines, 5 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,11 @@ # Changelog +## [1.0.0.2] - 2023-10-04++### Changed++* Forward compatibility with `persistent` requiring `TypeOperators`.+ ## [1.0.0.1] - 2022-08-30  ### Added
bench/Main.hs view
@@ -10,6 +10,7 @@ {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE TypeApplications #-} {-# LANGUAGE TypeFamilies #-}+{-# LANGUAGE TypeOperators #-} {-# LANGUAGE UndecidableInstances #-}  module Main where
genvalidity-persistent.cabal view
@@ -1,11 +1,11 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.34.7.+-- This file has been generated from package.yaml by hpack version 0.35.2. -- -- see: https://github.com/sol/hpack  name:           genvalidity-persistent-version:        1.0.0.1+version:        1.0.0.2 synopsis:       GenValidity support for Persistent category:       Testing homepage:       https://github.com/NorfairKing/validity#readme
src/Data/GenValidity/Persist.hs view
@@ -1,7 +1,8 @@ {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE UndecidableInstances #-}-{-# OPTIONS_GHC -fno-warn-orphans #-}+{-# OPTIONS_GHC -Wno-orphans #-}+{-# OPTIONS_GHC -Wno-redundant-constraints #-}  module Data.GenValidity.Persist where 
test/Data/GenValidity/PersistSpec.hs view
@@ -10,6 +10,7 @@ {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE TypeApplications #-} {-# LANGUAGE TypeFamilies #-}+{-# LANGUAGE TypeOperators #-} {-# LANGUAGE UndecidableInstances #-}  module Data.GenValidity.PersistSpec