avers 0.0.5 → 0.0.6
raw patch · 2 files changed
+6/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Avers: Index :: Text -> (Exp Object -> Exp a) -> Index a
+ Avers: SomeIndex :: Index a -> SomeIndex
+ Avers: data Index a
+ Avers: data SomeIndex
+ Avers: indexExpression :: Index a -> Exp Object -> Exp a
+ Avers: indexName :: Index a -> Text
Files
- avers.cabal +1/−1
- src/Avers.hs +5/−0
avers.cabal view
@@ -1,5 +1,5 @@ name: avers-version: 0.0.5+version: 0.0.6 license: GPL-3 license-file: LICENSE author: Tomas Carnecky
src/Avers.hs view
@@ -99,6 +99,10 @@ , viewTable , updateView + -- * Index+ , Index(..)+ , SomeIndex(..)+ ) where @@ -108,3 +112,4 @@ import Avers.Storage.Backend import Avers.Types import Avers.Views+import Avers.Index