persistent-mongoDB 2.10.0.0 → 2.10.0.1
raw patch · 3 files changed
+6/−3 lines, 3 filesdep ~bsondep ~mongoDBdep ~persistentnew-uploaderPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: bson, mongoDB, persistent
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- persistent-mongoDB.cabal +1/−1
- test/EmbedTestMongo.hs +1/−2
ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for persistent-mongoDB +## 2.10.0.1++* Remove unnecessary deriving of Typeable [#1114](https://github.com/yesodweb/persistent/pull/1114)+ ## 2.10.0.0 * Fix `ninList` filter operator [#1058](https://github.com/yesodweb/persistent/pull/1058)
persistent-mongoDB.cabal view
@@ -1,5 +1,5 @@ name: persistent-mongoDB-version: 2.10.0.0+version: 2.10.0.1 license: MIT license-file: LICENSE author: Greg Weber <greg@gregweber.info>
test/EmbedTestMongo.hs view
@@ -20,7 +20,6 @@ import qualified Data.Map as M import qualified Data.Set as S import qualified Data.Text as T-import Data.Typeable (Typeable) import Database.MongoDB (genObjectId) import Database.MongoDB (Value(String)) import System.Process (readProcess)@@ -29,7 +28,7 @@ import Database.Persist.MongoDB data TestException = TestException- deriving (Show, Typeable, Eq)+ deriving (Show, Eq) instance Exception TestException instance PersistFieldSql a => PersistFieldSql (NonEmpty a) where