diff --git a/yesod-auth/ChangeLog.md b/yesod-auth/ChangeLog.md index faa0733f..fb9d5391 100644 --- a/yesod-auth/ChangeLog.md +++ b/yesod-auth/ChangeLog.md @@ -1,5 +1,9 @@ # ChangeLog for yesod-auth +## 1.6.10.1 + +* Add support for Persistent 2.11 [#1701](https://github.com/yesodweb/yesod/pull/1701) + ## 1.6.10 * Updated `AuthMessage` data type in `Yesod.Auth.Message` to accommodate registration flow where password is supplied initially: deprecated `AddressVerified` and split into `EmailVerifiedChangePass` and `EmailVerified` diff --git a/yesod-auth/yesod-auth.cabal b/yesod-auth/yesod-auth.cabal index 5de976ec..f936ca85 100644 --- a/yesod-auth/yesod-auth.cabal +++ b/yesod-auth/yesod-auth.cabal @@ -1,5 +1,5 @@ name: yesod-auth -version: 1.6.10 +version: 1.6.10.1 license: MIT license-file: LICENSE author: Michael Snoyman, Patrick Brisbin @@ -43,7 +43,7 @@ library , http-types , memory , nonce >= 1.0.2 && < 1.1 - , persistent >= 2.8 && < 2.11 + , persistent >= 2.8 && < 2.12 , random >= 1.0.0.2 , safe , shakespeare diff --git a/yesod-persistent/ChangeLog.md b/yesod-persistent/ChangeLog.md index 3ba8a38e..1aaa6c63 100644 --- a/yesod-persistent/ChangeLog.md +++ b/yesod-persistent/ChangeLog.md @@ -1,5 +1,9 @@ # ChangeLog for yesod-persistent +## 1.6.0.5 + +* Add support for Persistent 2.11 [#1701](https://github.com/yesodweb/yesod/pull/1701) + ## 1.6.0.4 * Fix test suite to be compatible with latest `persistent-template` diff --git a/yesod-persistent/test/Yesod/PersistSpec.hs b/yesod-persistent/test/Yesod/PersistSpec.hs index 6164d0d6..a08e475a 100644 --- a/yesod-persistent/test/Yesod/PersistSpec.hs +++ b/yesod-persistent/test/Yesod/PersistSpec.hs @@ -1,3 +1,5 @@ +{-# LANGUAGE FlexibleInstances #-} +{-# LANGUAGE DataKinds #-} {-# LANGUAGE OverloadedStrings, TemplateHaskell, QuasiQuotes, TypeFamilies #-} {-# LANGUAGE EmptyDataDecls, FlexibleContexts, GADTs #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} diff --git a/yesod-persistent/yesod-persistent.cabal b/yesod-persistent/yesod-persistent.cabal index 99589ba4..37640d9b 100644 --- a/yesod-persistent/yesod-persistent.cabal +++ b/yesod-persistent/yesod-persistent.cabal @@ -1,5 +1,5 @@ name: yesod-persistent -version: 1.6.0.4 +version: 1.6.0.5 license: MIT license-file: LICENSE author: Michael Snoyman @@ -16,8 +16,8 @@ extra-source-files: README.md ChangeLog.md library build-depends: base >= 4.10 && < 5 , yesod-core >= 1.6 && < 1.7 - , persistent >= 2.8 && < 2.11 - , persistent-template >= 2.1 && < 2.9 + , persistent >= 2.8 && < 2.12 + , persistent-template >= 2.1 && < 2.10 , transformers >= 0.2.2 , blaze-builder , conduit