indexation 0.2.0.3 → 0.2.1
raw patch · 2 files changed
+4/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Indexation.IO: createIndexer :: IO (Indexer entity)
+ Indexation.IO: serializeIndexerToFile :: Serialize entity => FilePath -> Indexer entity -> IO (Either IOException ())
+ Indexation.Potoki.Transform: indexConcurrently :: (Eq entity, Hashable entity) => Indexer entity -> Transform entity (Index entity)
Files
- indexation.cabal +2/−2
- library/Indexation/IO.hs +2/−0
indexation.cabal view
@@ -1,7 +1,7 @@ name: indexation version:- 0.2.0.3+ 0.2.1 category: Data synopsis:@@ -46,13 +46,13 @@ Indexation.IndexTable Indexation.IO Indexation.Potoki.Produce+ Indexation.Potoki.Transform other-modules: Indexation.Cereal.Get Indexation.Cereal.Put Indexation.Constructors.EntityTable Indexation.Folds Indexation.Instances.Cereal- Indexation.Potoki.Transform Indexation.Prelude Indexation.Types Indexation.Vector
library/Indexation/IO.hs view
@@ -1,5 +1,7 @@ module Indexation.IO (+ createIndexer,+ serializeIndexerToFile, indexProduceToFiles, readEntitiesAmountFromEntityTableFile, readEntityTableFromFile,