Add support for persistent 2.10

This commit is contained in:
Michael Snoyman 2019-04-22 08:46:21 +03:00
parent cc2d19a25d
commit ad6ed03aa4
No known key found for this signature in database
GPG Key ID: A048E8C057E86876
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,9 @@
# ChangeLog for yesod-persistent
## 1.6.0.2
* Add support for persistent 2.10
## 1.6.0.1
* Add support for persistent 2.9 [#1516](https://github.com/yesodweb/yesod/pull/1516), [#1561](https://github.com/yesodweb/yesod/pull/1561)

View File

@ -3,6 +3,7 @@
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE UndecidableInstances #-}
module Yesod.PersistSpec where
import Test.Hspec

View File

@ -1,5 +1,5 @@
name: yesod-persistent
version: 1.6.0.1
version: 1.6.0.2
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
@ -16,7 +16,7 @@ extra-source-files: README.md ChangeLog.md
library
build-depends: base >= 4 && < 5
, yesod-core >= 1.6 && < 1.7
, persistent >= 2.8 && < 2.10
, persistent >= 2.8 && < 2.11
, persistent-template >= 2.1 && < 2.8
, transformers >= 0.2.2
, blaze-builder