amazonka-importexport 1.2.0.1 → 1.2.0.2
raw patch · 15 files changed
+19/−18 lines, 15 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +1/−1
- amazonka-importexport.cabal +6/−5
- fixture/CancelJob.yaml +0/−0
- fixture/CancelJobResponse.proto +0/−0
- fixture/CreateJob.yaml +0/−0
- fixture/CreateJobResponse.proto +0/−0
- fixture/GetShippingLabel.yaml +0/−0
- fixture/GetShippingLabelResponse.proto +0/−0
- fixture/GetStatus.yaml +0/−0
- fixture/GetStatusResponse.proto +0/−0
- fixture/ListJobs.yaml +0/−0
- fixture/ListJobsResponse.proto +0/−0
- fixture/UpdateJob.yaml +0/−0
- fixture/UpdateJobResponse.proto +0/−0
- test/Test/AWS/Gen/ImportExport.hs +12/−12
README.md view
@@ -8,7 +8,7 @@ ## Version -`1.2.0.1`+`1.2.0.2` ## Description
amazonka-importexport.cabal view
@@ -1,7 +1,8 @@ name: amazonka-importexport-version: 1.2.0.1+version: 1.2.0.2 synopsis: Amazon Import/Export 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: AWS Import\/Export Service AWS Import\/Export accelerates transferring large amounts of data between the AWS cloud and portable storage devices@@ -72,8 +72,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.ImportExport , Test.AWS.Gen.ImportExport
+ fixture/CancelJob.yaml view
+ fixture/CancelJobResponse.proto view
+ fixture/CreateJob.yaml view
+ fixture/CreateJobResponse.proto view
+ fixture/GetShippingLabel.yaml view
+ fixture/GetShippingLabelResponse.proto view
+ fixture/GetStatus.yaml view
+ fixture/GetStatusResponse.proto view
+ fixture/ListJobs.yaml view
+ fixture/ListJobsResponse.proto view
+ fixture/UpdateJob.yaml view
+ fixture/UpdateJobResponse.proto view
test/Test/AWS/Gen/ImportExport.hs view
@@ -75,73 +75,73 @@ testGetShippingLabel :: GetShippingLabel -> TestTree testGetShippingLabel = req "GetShippingLabel"- "fixture/GetShippingLabel"+ "fixture/GetShippingLabel.yaml" testCreateJob :: CreateJob -> TestTree testCreateJob = req "CreateJob"- "fixture/CreateJob"+ "fixture/CreateJob.yaml" testListJobs :: ListJobs -> TestTree testListJobs = req "ListJobs"- "fixture/ListJobs"+ "fixture/ListJobs.yaml" testUpdateJob :: UpdateJob -> TestTree testUpdateJob = req "UpdateJob"- "fixture/UpdateJob"+ "fixture/UpdateJob.yaml" testGetStatus :: GetStatus -> TestTree testGetStatus = req "GetStatus"- "fixture/GetStatus"+ "fixture/GetStatus.yaml" testCancelJob :: CancelJob -> TestTree testCancelJob = req "CancelJob"- "fixture/CancelJob"+ "fixture/CancelJob.yaml" -- Responses testGetShippingLabelResponse :: GetShippingLabelResponse -> TestTree testGetShippingLabelResponse = res "GetShippingLabelResponse"- "fixture/GetShippingLabelResponse"+ "fixture/GetShippingLabelResponse.proto" importExport (Proxy :: Proxy GetShippingLabel) testCreateJobResponse :: CreateJobResponse -> TestTree testCreateJobResponse = res "CreateJobResponse"- "fixture/CreateJobResponse"+ "fixture/CreateJobResponse.proto" importExport (Proxy :: Proxy CreateJob) testListJobsResponse :: ListJobsResponse -> TestTree testListJobsResponse = res "ListJobsResponse"- "fixture/ListJobsResponse"+ "fixture/ListJobsResponse.proto" importExport (Proxy :: Proxy ListJobs) testUpdateJobResponse :: UpdateJobResponse -> TestTree testUpdateJobResponse = res "UpdateJobResponse"- "fixture/UpdateJobResponse"+ "fixture/UpdateJobResponse.proto" importExport (Proxy :: Proxy UpdateJob) testGetStatusResponse :: GetStatusResponse -> TestTree testGetStatusResponse = res "GetStatusResponse"- "fixture/GetStatusResponse"+ "fixture/GetStatusResponse.proto" importExport (Proxy :: Proxy GetStatus) testCancelJobResponse :: CancelJobResponse -> TestTree testCancelJobResponse = res "CancelJobResponse"- "fixture/CancelJobResponse"+ "fixture/CancelJobResponse.proto" importExport (Proxy :: Proxy CancelJob)