Hello community,

here is the log from the commit of package ghc-yesod-persistent for 
openSUSE:Factory checked in at 2020-11-12 22:45:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-yesod-persistent (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-yesod-persistent.new.24930 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-yesod-persistent"

Thu Nov 12 22:45:30 2020 rev:3 rq:847882 version:1.6.0.5

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/ghc-yesod-persistent/ghc-yesod-persistent.changes    
    2020-08-28 21:42:00.628901236 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-yesod-persistent.new.24930/ghc-yesod-persistent.changes
     2020-11-12 22:45:31.526525963 +0100
@@ -1,0 +2,8 @@
+Sat Nov  7 15:35:56 UTC 2020 - [email protected]
+
+- Update yesod-persistent to version 1.6.0.5.
+  ## 1.6.0.5
+
+  * Add support for Persistent 2.11 
[#1701](https://github.com/yesodweb/yesod/pull/1701)
+
+-------------------------------------------------------------------

Old:
----
  yesod-persistent-1.6.0.4.tar.gz

New:
----
  yesod-persistent-1.6.0.5.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-yesod-persistent.spec ++++++
--- /var/tmp/diff_new_pack.fYIljY/_old  2020-11-12 22:45:32.430526907 +0100
+++ /var/tmp/diff_new_pack.fYIljY/_new  2020-11-12 22:45:32.434526911 +0100
@@ -19,7 +19,7 @@
 %global pkg_name yesod-persistent
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        1.6.0.4
+Version:        1.6.0.5
 Release:        0
 Summary:        Some helpers for using Persistent from Yesod
 License:        MIT

++++++ yesod-persistent-1.6.0.4.tar.gz -> yesod-persistent-1.6.0.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yesod-persistent-1.6.0.4/ChangeLog.md 
new/yesod-persistent-1.6.0.5/ChangeLog.md
--- old/yesod-persistent-1.6.0.4/ChangeLog.md   2020-01-03 06:38:16.000000000 
+0100
+++ new/yesod-persistent-1.6.0.5/ChangeLog.md   2020-11-06 05:24:17.000000000 
+0100
@@ -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 -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yesod-persistent-1.6.0.4/test/Yesod/PersistSpec.hs 
new/yesod-persistent-1.6.0.5/test/Yesod/PersistSpec.hs
--- old/yesod-persistent-1.6.0.4/test/Yesod/PersistSpec.hs      2020-01-03 
06:38:16.000000000 +0100
+++ new/yesod-persistent-1.6.0.5/test/Yesod/PersistSpec.hs      2020-11-06 
05:24:17.000000000 +0100
@@ -1,3 +1,5 @@
+{-# LANGUAGE FlexibleInstances #-}
+{-# LANGUAGE DataKinds #-}
 {-# LANGUAGE OverloadedStrings, TemplateHaskell, QuasiQuotes, TypeFamilies #-}
 {-# LANGUAGE EmptyDataDecls, FlexibleContexts, GADTs #-}
 {-# LANGUAGE GeneralizedNewtypeDeriving #-}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yesod-persistent-1.6.0.4/yesod-persistent.cabal 
new/yesod-persistent-1.6.0.5/yesod-persistent.cabal
--- old/yesod-persistent-1.6.0.4/yesod-persistent.cabal 2020-01-03 
06:38:16.000000000 +0100
+++ new/yesod-persistent-1.6.0.5/yesod-persistent.cabal 2020-11-06 
08:14:35.000000000 +0100
@@ -1,5 +1,6 @@
+cabal-version:   >= 1.10
 name:            yesod-persistent
-version:         1.6.0.4
+version:         1.6.0.5
 license:         MIT
 license-file:    LICENSE
 author:          Michael Snoyman <[email protected]>
@@ -7,17 +8,17 @@
 synopsis:        Some helpers for using Persistent from Yesod.
 category:        Web, Yesod, Database
 stability:       Stable
-cabal-version:   >= 1.8
 build-type:      Simple
 homepage:        http://www.yesodweb.com/
 description:     API docs and the README are available at 
<http://www.stackage.org/package/yesod-persistent>
 extra-source-files: README.md ChangeLog.md
 
 library
-    build-depends:   base                      >= 4        && < 5
+    default-language: Haskell2010
+    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
@@ -28,6 +29,7 @@
     ghc-options:     -Wall
 
 test-suite test
+    default-language: Haskell2010
     type: exitcode-stdio-1.0
     main-is: Spec.hs
     hs-source-dirs: test
_______________________________________________
openSUSE Commits mailing list -- [email protected]
To unsubscribe, email [email protected]
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives: 
https://lists.opensuse.org/archives/list/[email protected]

Reply via email to