packages feed

aws-route53 0.1.0 → 0.1.1

raw patch · 4 files changed

+32/−9 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Aws/Route53/Core.hs view
@@ -432,8 +432,7 @@     <Name>#{dText rrsName}     <Type>#{typeToText rrsType}     $maybe a <- rrsAliasTarget-      <AliasTarget>-        ^{[XML.NodeElement (toXml a)]}+      ^{[XML.NodeElement (toXml a)]}     $maybe i <- rrsSetIdentifier        <SetIdentifier>#{i}     $maybe w <- rrsWeight@@ -442,9 +441,10 @@       <Region>#{regionToText r}     $maybe t <- rrsTTL       <TTL>#{intToText t}-    <ResourceRecords>-      $forall record <- rrsRecords-        ^{[XML.NodeElement (toXml record)]}+    $if not (null rrsRecords)+      <ResourceRecords>+        $forall record <- rrsRecords+          ^{[XML.NodeElement (toXml record)]}     |]  instance Route53XmlSerializable ResourceRecord where
+ CHANGELOG.md view
@@ -0,0 +1,18 @@+# 0.1.1 - 4th August, 2014++* Fix Alias target requests.++# 0.1.0 - 26th April, 2014++* Move from `failure` package to `resourcet` package.++# 0.0.2 - 6th September, 2013++* Fix attribution of work and copyright.+* Improve cabal description of package.++# 0.0.1 - 20th August, 2013++* Initial release!+* Fix up bugs and regressions from changed package versions.+
+ CONTRIBUTORS.md view
@@ -0,0 +1,4 @@+Aristid Breitkreuz+Vladimir Kirillov+Amit Levy+David Terei
aws-route53.cabal view
@@ -1,7 +1,7 @@ name:                aws-route53-version:             0.1.0-synopsis:            Route53 plugin for the aws package-description:         Route53 plugin for the aws package+version:             0.1.1+synopsis:            Amazon Route53 DNS service plugin for the aws package.+description:         Amazon Route53 DNS service plugin for the aws package. license:             BSD3 license-file:        LICENSE author:              Aristid Breitkreuz; AlephCloud Systems, Inc; MemCachier, Inc@@ -10,6 +10,7 @@ category:            Web build-type:          Simple cabal-version:       >=1.10+extra-source-files:  CHANGELOG.md, CONTRIBUTORS.md  Library   Exposed-modules:@@ -52,7 +53,7 @@ Source-repository this   type: git   location: https://github.com/memcachier/aws-route53.git-  tag: 0.0.2+  tag: 0.1.0  Source-repository head   type: git