eventium-core 0.3.0 → 0.3.1
raw patch · 2 files changed
+3/−3 lines, 2 files
Files
- eventium-core.cabal +1/−1
- src/Eventium/Store/Class.hs +2/−2
eventium-core.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: eventium-core-version: 0.3.0+version: 0.3.1 synopsis: Core module for eventium description: Eventium-core provides the core abstractions and utilities for building event sourcing systems in Haskell. It includes event store interfaces, command handlers, projections, event handlers, event publishers,
src/Eventium/Store/Class.hs view
@@ -200,7 +200,7 @@ map ( \e -> TaggedEvent- (enricher (EventMetadata (T.pack . show $ typeOf e) Nothing Nothing (Just now) Nothing))+ (enricher (EventMetadata (T.pack . show $ typeOf e) Nothing Nothing (Just now) (Just now))) (codec.encode e) ) events@@ -217,7 +217,7 @@ tagEvents codec now = map $ \e -> TaggedEvent- (EventMetadata (T.pack . show $ typeOf e) Nothing Nothing (Just now) Nothing)+ (EventMetadata (T.pack . show $ typeOf e) Nothing Nothing (Just now) (Just now)) (codec.encode e) -- | Like 'codecEventStoreWriter' but uses a 'TypeEmbedding' instead of