antiope-sns 4.0.0 → 4.0.1
raw patch · 2 files changed
+10/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- antiope-sns.cabal +2/−2
- src/Antiope/SNS/Types.hs +8/−1
antiope-sns.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: ac38792b6e28dc27c2459728b9596e30c7498c23c5d91cb94ce731ed70ab4752+-- hash: 9de605ddd27512e8533789e93bc221cd2e0c4282d9f6f80ec73869cf11111554 name: antiope-sns-version: 4.0.0+version: 4.0.1 description: Please see the README on Github at <https://github.com/arbor/antiope#readme> category: Services homepage: https://github.com/arbor/antiope#readme
src/Antiope/SNS/Types.hs view
@@ -1,7 +1,14 @@-module Antiope.SNS.Types where+module Antiope.SNS.Types+ ( module X+ , MessageId(..)+ , Protocol(..)+ , SubscriptionArn(..)+ ) where import Data.Text (Text) import Network.AWS.Data.Text (FromText (..), ToText (..))++import Network.AWS.SNS as X newtype MessageId = MessageId Text deriving (Show, Eq, Ord, ToText, FromText) newtype Protocol = Protocol Text deriving (Show, Eq, Ord, ToText, FromText)