Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: brandonchinn178/persistent-mtl
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5364d6ec6d91084d5621e110924377dd1ddbee6d
Choose a base ref
..
head repository: brandonchinn178/persistent-mtl
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d470f499f83366c566edaacebf621445fa44c39e
Choose a head ref
Showing with 8 additions and 2 deletions.
  1. +6 −0 CHANGELOG.md
  2. +1 −1 package.yaml
  3. +1 −1 persistent-mtl.cabal
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Unreleased

# 0.4.0.0

* Add some mtl instances: `MonadThrow`, `MonadCatch`, `MonadMask`, `MonadLogger`, `MonadReader`
* Removed support for GHC 8.2, 8.4
* Add `MonadSqlQuery (TransactionM m)` superclass constraint to allow writing functions generic on some `MonadSqlQuery m` using `withTransaction`, as shown in examples in README

# 0.3.0.0

* Add `unsafeLiftSql` ([#38](https://github.com/brandonchinn178/persistent-mtl/pull/38))
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: persistent-mtl
version: 0.3.0.0
version: 0.4.0.0
maintainer: Brandon Chinn <brandonchinn178@gmail.com>
synopsis: Monad transformer for the persistent API
description: |
2 changes: 1 addition & 1 deletion persistent-mtl.cabal
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack

name: persistent-mtl
version: 0.3.0.0
version: 0.4.0.0
synopsis: Monad transformer for the persistent API
description: A monad transformer and mtl-style type class for using the
persistent API directly in your monad transformer stack.