packages feed

amazonka-dynamodb-streams 1.2.0.1 → 1.2.0.2

raw patch · 11 files changed

+15/−14 lines, 11 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

README.md view
@@ -8,7 +8,7 @@  ## Version -`1.2.0.1`+`1.2.0.2`   ## Description
amazonka-dynamodb-streams.cabal view
@@ -1,7 +1,8 @@ name:                  amazonka-dynamodb-streams-version:               1.2.0.1+version:               1.2.0.2 synopsis:              Amazon DynamoDB Streams SDK. homepage:              https://github.com/brendanhay/amazonka+bug-reports:           https://github.com/brendanhay/amazonka/issues license:               OtherLicense license-file:          LICENSE author:                Brendan Hay@@ -9,9 +10,8 @@ copyright:             Copyright (c) 2013-2015 Brendan Hay category:              Network, AWS, Cloud, Distributed Computing build-type:            Simple-extra-source-files:    README.md cabal-version:         >= 1.10-+extra-source-files:    README.md fixture/*.yaml fixture/*.proto description:     Amazon DynamoDB Streams @@ -91,8 +91,9 @@      ghc-options:       -Wall -threaded -    -- This is not comprehensive if modules have manually been added.-    -- It exists to ensure cabal 'somewhat' detects test module changes.+    -- This section is encoded by the template and any modules added by+    -- hand outside these namespaces will not correctly be added to the+    -- distribution package.     other-modules:           Test.AWS.DynamoDBStreams         , Test.AWS.Gen.DynamoDBStreams
+ fixture/DescribeStream.yaml view
+ fixture/DescribeStreamResponse.proto view
+ fixture/GetRecords.yaml view
+ fixture/GetRecordsResponse.proto view
+ fixture/GetShardIterator.yaml view
+ fixture/GetShardIteratorResponse.proto view
+ fixture/ListStreams.yaml view
+ fixture/ListStreamsResponse.proto view
test/Test/AWS/Gen/DynamoDBStreams.hs view
@@ -63,49 +63,49 @@ testGetRecords :: GetRecords -> TestTree testGetRecords = req     "GetRecords"-    "fixture/GetRecords"+    "fixture/GetRecords.yaml"  testGetShardIterator :: GetShardIterator -> TestTree testGetShardIterator = req     "GetShardIterator"-    "fixture/GetShardIterator"+    "fixture/GetShardIterator.yaml"  testListStreams :: ListStreams -> TestTree testListStreams = req     "ListStreams"-    "fixture/ListStreams"+    "fixture/ListStreams.yaml"  testDescribeStream :: DescribeStream -> TestTree testDescribeStream = req     "DescribeStream"-    "fixture/DescribeStream"+    "fixture/DescribeStream.yaml"  -- Responses  testGetRecordsResponse :: GetRecordsResponse -> TestTree testGetRecordsResponse = res     "GetRecordsResponse"-    "fixture/GetRecordsResponse"+    "fixture/GetRecordsResponse.proto"     dynamoDBStreams     (Proxy :: Proxy GetRecords)  testGetShardIteratorResponse :: GetShardIteratorResponse -> TestTree testGetShardIteratorResponse = res     "GetShardIteratorResponse"-    "fixture/GetShardIteratorResponse"+    "fixture/GetShardIteratorResponse.proto"     dynamoDBStreams     (Proxy :: Proxy GetShardIterator)  testListStreamsResponse :: ListStreamsResponse -> TestTree testListStreamsResponse = res     "ListStreamsResponse"-    "fixture/ListStreamsResponse"+    "fixture/ListStreamsResponse.proto"     dynamoDBStreams     (Proxy :: Proxy ListStreams)  testDescribeStreamResponse :: DescribeStreamResponse -> TestTree testDescribeStreamResponse = res     "DescribeStreamResponse"-    "fixture/DescribeStreamResponse"+    "fixture/DescribeStreamResponse.proto"     dynamoDBStreams     (Proxy :: Proxy DescribeStream)