diff --git a/Aws/Route53/Core.hs b/Aws/Route53/Core.hs
--- a/Aws/Route53/Core.hs
+++ b/Aws/Route53/Core.hs
@@ -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
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
--- /dev/null
+++ b/CHANGELOG.md
@@ -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.
+
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
new file mode 100644
--- /dev/null
+++ b/CONTRIBUTORS.md
@@ -0,0 +1,4 @@
+Aristid Breitkreuz
+Vladimir Kirillov
+Amit Levy
+David Terei
diff --git a/aws-route53.cabal b/aws-route53.cabal
--- a/aws-route53.cabal
+++ b/aws-route53.cabal
@@ -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
