eventful-dynamodb 0.1.1 → 0.1.2
raw patch · 4 files changed
+8/−4 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- eventful-dynamodb.cabal +1/−4
- src/Eventful/Store/DynamoDB.hs +3/−0
- src/Eventful/Store/DynamoDB/DynamoJSON.hs +2/−0
- tests/Eventful/Store/DynamoDBSpec.hs +2/−0
eventful-dynamodb.cabal view
@@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack name: eventful-dynamodb-version: 0.1.1+version: 0.1.2 synopsis: Library for eventful DynamoDB event stores description: Library for eventful DynamoDB event stores category: Database,Eventsourcing,AWS@@ -23,7 +23,6 @@ library hs-source-dirs: src- default-extensions: ConstraintKinds DeriveFunctor DeriveGeneric FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving MultiParamTypeClasses OverloadedStrings QuasiQuotes RankNTypes RecordWildCards ScopedTypeVariables StandaloneDeriving TemplateHaskell TupleSections TypeFamilies ghc-options: -Wall build-depends: base >= 4.9 && < 5@@ -49,7 +48,6 @@ hs-source-dirs: tests src- default-extensions: ConstraintKinds DeriveFunctor DeriveGeneric FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving MultiParamTypeClasses OverloadedStrings QuasiQuotes RankNTypes RecordWildCards ScopedTypeVariables StandaloneDeriving TemplateHaskell TupleSections TypeFamilies ghc-options: -Wall build-depends: base >= 4.9 && < 5@@ -82,7 +80,6 @@ main-is: HLint.hs hs-source-dirs: tests- default-extensions: ConstraintKinds DeriveFunctor DeriveGeneric FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving MultiParamTypeClasses OverloadedStrings QuasiQuotes RankNTypes RecordWildCards ScopedTypeVariables StandaloneDeriving TemplateHaskell TupleSections TypeFamilies ghc-options: -Wall build-depends: base >= 4.9 && < 5
src/Eventful/Store/DynamoDB.hs view
@@ -1,3 +1,6 @@+{-# LANGUAGE OverloadedStrings #-}+{-# LANGUAGE RecordWildCards #-}+ module Eventful.Store.DynamoDB ( dynamoDBEventStore , DynamoDBEventStoreConfig (..)
src/Eventful/Store/DynamoDB/DynamoJSON.hs view
@@ -1,3 +1,5 @@+{-# LANGUAGE OverloadedStrings #-}+ module Eventful.Store.DynamoDB.DynamoJSON ( valueToAttributeValue , attributeValueToValue
tests/Eventful/Store/DynamoDBSpec.hs view
@@ -1,3 +1,5 @@+{-# LANGUAGE OverloadedStrings #-}+ module Eventful.Store.DynamoDBSpec (spec) where import Control.Lens ((<&>))