Skip to content

Commit 5fc40f5

Browse files
Bump version
1 parent 4095e8d commit 5fc40f5

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.2.0.0
2+
3+
* Use a separate monad within `withTransaction` to prevent unsafe/arbitrary IO actions ([#7](https://github.com/brandonchinn178/persistent-mtl/issues/7), [#28](https://github.com/brandonchinn178/persistent-mtl/issues/28))
4+
* Add `MonadRerunnableIO` to support IO actions within `withTransaction` only if the IO action is determined to be rerunnable
5+
* Add built-in support for retrying transactions if a serialization error occurs
6+
* Remove `SqlQueryRep` as an export from `Database.Persist.Monad`. You shouldn't ever need it for normal usage. It is now re-exported by `Database.Persist.Monad.TestUtils`, since most of the usage of `SqlQueryRep` is in mocking queries. If you need it otherwise, you can import it directly from `Database.Persist.Monad.SqlQueryRep`.
7+
18
# 0.1.0.1
29

310
Fix quickstart

package.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: persistent-mtl
2-
version: 0.1.0.1
2+
version: 0.2.0.0
33
maintainer: Brandon Chinn <[email protected]>
44
synopsis: Monad transformer for the persistent API
55
description: |

persistent-mtl.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ cabal-version: 1.12
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: 23b70b22e78b3739cc334cf365c6827b4ae9db9b086d83e1542c81ae9d37ad53
7+
-- hash: 9c53e0610dea4ca814133d0596978b961b85fd54cb6df7a82eccb6d260824dde
88

99
name: persistent-mtl
10-
version: 0.1.0.1
10+
version: 0.2.0.0
1111
synopsis: Monad transformer for the persistent API
1212
description: A monad transformer and mtl-style type class for using the
1313
persistent API directly in your monad transformer stack.

0 commit comments

Comments
 (0)