packages feed

amazonka-cloudsearch-domains 1.2.0.1 → 1.2.0.2

raw patch · 9 files changed

+12/−11 lines, 9 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-cloudsearch-domains.cabal view
@@ -1,7 +1,8 @@ name:                  amazonka-cloudsearch-domains-version:               1.2.0.1+version:               1.2.0.2 synopsis:              Amazon CloudSearch Domain 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:     You use the AmazonCloudSearch2013 API to upload documents to a search     domain and search those documents.@@ -74,8 +74,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.CloudSearchDomains         , Test.AWS.Gen.CloudSearchDomains
+ fixture/Search.yaml view
+ fixture/SearchResponse.proto view
+ fixture/Suggest.yaml view
+ fixture/SuggestResponse.proto view
+ fixture/UploadDocuments.yaml view
+ fixture/UploadDocumentsResponse.proto view
test/Test/AWS/Gen/CloudSearchDomains.hs view
@@ -57,32 +57,32 @@ testSuggest :: Suggest -> TestTree testSuggest = req     "Suggest"-    "fixture/Suggest"+    "fixture/Suggest.yaml"  testSearch :: Search -> TestTree testSearch = req     "Search"-    "fixture/Search"+    "fixture/Search.yaml"  -- Responses  testSuggestResponse :: SuggestResponse -> TestTree testSuggestResponse = res     "SuggestResponse"-    "fixture/SuggestResponse"+    "fixture/SuggestResponse.proto"     cloudSearchDomains     (Proxy :: Proxy Suggest)  testUploadDocumentsResponse :: UploadDocumentsResponse -> TestTree testUploadDocumentsResponse = res     "UploadDocumentsResponse"-    "fixture/UploadDocumentsResponse"+    "fixture/UploadDocumentsResponse.proto"     cloudSearchDomains     (Proxy :: Proxy UploadDocuments)  testSearchResponse :: SearchResponse -> TestTree testSearchResponse = res     "SearchResponse"-    "fixture/SearchResponse"+    "fixture/SearchResponse.proto"     cloudSearchDomains     (Proxy :: Proxy Search)