hmemdb 0.3.1.0 → 0.3.1.1
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- hmemdb.cabal +1/−1
- src/Data/HMemDb.hs +1/−1
hmemdb.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: hmemdb -version: 0.3.1.0 +version: 0.3.1.1 synopsis: In-memory relational database description: Library that provides a sort of relational database in memory (which could be saved to the disk, however). Very untested. license: BSD3
src/Data/HMemDb.hs view
@@ -63,7 +63,7 @@ mToList = return . sVal mSingleton = Single mInsert _ _ = Nothing - mDelete n s = guard (n == sVal s) >> return s + mDelete n s = guard (n /= sVal s) >> return s instance Binary Multiple where get = fmap Multiple get put = put . mVal