conduit 1.2 version bumps

This commit is contained in:
Michael Snoyman 2014-08-27 18:01:02 +03:00
parent d3df218a96
commit d6b3d2a890
7 changed files with 11 additions and 6 deletions

View File

@ -1,5 +1,5 @@
name: yesod-auth
version: 1.3.4.2
version: 1.3.4.3
license: MIT
license-file: LICENSE
author: Michael Snoyman, Patrick Brisbin

View File

@ -1,5 +1,5 @@
name: yesod-bin
version: 1.2.12.4
version: 1.2.12.5
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>

View File

@ -1,5 +1,5 @@
name: yesod-core
version: 1.2.19.1
version: 1.2.19.2
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>

View File

@ -1,5 +1,5 @@
name: yesod-eventsource
version: 1.1.1
version: 1.1.1.1
license: MIT
license-file: LICENSE
author: Felipe Lessa <felipe.lessa@gmail.com>

View File

@ -1,5 +1,5 @@
name: yesod-form
version: 1.3.15.2
version: 1.3.15.3
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>

View File

@ -1,6 +1,7 @@
{-# LANGUAGE OverloadedStrings, TemplateHaskell, QuasiQuotes, TypeFamilies #-}
{-# LANGUAGE EmptyDataDecls, FlexibleContexts, GADTs #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE CPP #-}
module Yesod.PersistSpec where
import Test.Hspec
@ -28,7 +29,11 @@ mkYesod "App" [parseRoutes|
instance Yesod App
instance YesodPersist App where
#if MIN_VERSION_persistent(2, 0, 0)
type YesodPersistBackend App = SqlBackend
#else
type YesodPersistBackend App = SqlPersistT
#endif
runDB = defaultRunDB appConfig appPool
instance YesodPersistRunner App where
getDBRunner = defaultGetDBRunner appPool

View File

@ -1,5 +1,5 @@
name: yesod-persistent
version: 1.2.3
version: 1.2.3.1
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>