From 0ccbbf14a1872f097a01b7faf3c5f70926927a54 Mon Sep 17 00:00:00 2001
From: Parker Selbert <parker@sorentwo.com>
Date: Fri, 24 Feb 2017 09:16:19 -0600
Subject: [PATCH] Release v1.1.0

---
 CHANGELOG.md                   | 9 +++++++++
 lib/carrierwave/aws/version.rb | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3ca3488..858ef8b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,12 @@
+## Version 1.1.0 2017-02-24
+
+* Added: Enable using AWS for cache storage, making it easy to do direct file
+  uploads. [Fabian Schwahn]
+* Added: Block support for reading from AWS files. This prevents dumping the
+  entire object into memory, which is a problem with large objects. [Thomas Scholz]
+* Fixed: Duplicate the `public_url` before signing. All of the strings are
+  frozen, and some cloud signing methods attempt to mutate the url.
+
 ## Version 1.0.2 2016-09-26
 
 * Fixed: Use `Aws.eager_load` to bypass autoloading for the `S3` resource. This
diff --git a/lib/carrierwave/aws/version.rb b/lib/carrierwave/aws/version.rb
index de570d4..523a993 100644
--- a/lib/carrierwave/aws/version.rb
+++ b/lib/carrierwave/aws/version.rb
@@ -2,6 +2,6 @@
 
 module Carrierwave
   module AWS
-    VERSION = '1.0.2'
+    VERSION = '1.1.0'
   end
 end