packages feed

indexation 0.6.1 → 0.6.2.1

raw patch · 2 files changed

+3/−3 lines, 2 filesdep ~potokiPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: potoki

API changes (from Hackage documentation)

- Indexation.Data: data EntityTable entity
- Indexation.Data: data IndexCounts entity
- Indexation.Data: data IndexSet entity
- Indexation.Data: data ReindexTable entity
+ Indexation.Data: EntityTable :: (Vector entity) -> EntityTable entity
+ Indexation.Data: IndexCounts :: (Vector Word32) -> IndexCounts entity
+ Indexation.Data: IndexSet :: DenseIntSet -> IndexSet entity
+ Indexation.Data: IndexTable :: {-# UNPACK #-} !Int -> {-# UNPACK #-} !(HashMap entity Int) -> IndexTable entity
+ Indexation.Data: Indexer :: {-# UNPACK #-} !(TVar Int) -> {-# UNPACK #-} !(Map entity Int) -> Indexer entity
+ Indexation.Data: ReindexTable :: (Vector (Maybe Int)) -> ReindexTable entity
+ Indexation.Data: newtype EntityTable entity
+ Indexation.Data: newtype IndexCounts entity
+ Indexation.Data: newtype IndexSet entity
+ Indexation.Data: newtype ReindexTable entity

Files

indexation.cabal view
@@ -1,5 +1,5 @@ name: indexation-version: 0.6.1+version: 0.6.2.1 category: Data synopsis: Tools for entity indexation description: A set of tools for indexing entities@@ -48,7 +48,7 @@     hashable >=1 && <2,     list-t >=1 && <1.1,     mmorph >=1 && <2,-    potoki >=2.0.15 && <2.1,+    potoki >=2.1 && <2.2,     potoki-cereal >=0.3 && <0.4,     profunctors >=5.2 && <6,     stm-containers >=1.1 && <1.2,
library/Indexation/Data.hs view
@@ -4,6 +4,6 @@ ) where -import Indexation.Types as Exports (Index(..), EntityTable, IndexTable, ReindexTable, Indexer, IndexSet, IndexCounts)+import Indexation.Types as Exports import Indexation.Instances () import Indexation.Functions as Exports