Commit ee55bca3 by Tute Costa Committed by GitHub

Merge pull request #2239 from thoughtbot/tc-rel-v5

Release v5.0.0
parents 24674a2b ecab8e5a
master: master:
5.0.0 (2016-07-01):
* Improvement: Add `read_timeout` configuration for URI Adapter download_content method. * Improvement: Add `read_timeout` configuration for URI Adapter download_content method.
* README adjustments for Ruby beginners (add links, elucidate model in Quick Start) * README adjustments for Ruby beginners (add links, elucidate model in Quick Start)
* Bugfix: Now it's possible to save images from URLs with special characters [#1932] * Bugfix: Now it's possible to save images from URLs with special characters [#1932]
* Bugfix: Return false when file to copy is not present in cloud storage [#2173]
* Automatically close file while checking mime type [#2016]
* Add `read_timeout` option to `UriAdapter#download_content` method [#2232]
* Fix a nil error in content type validation matcher [#1910] * Fix a nil error in content type validation matcher [#1910]
* Documentation improvements
5.0.0.beta2 (2015-04-01): 5.0.0.beta2 (2016-04-01):
* Bugfix: Dynamic fog directory option is now respected * Bugfix: Dynamic fog directory option is now respected
* Bugfix: Fixes cocaine duplicated paths [#2169] * Bugfix: Fixes cocaine duplicated paths [#2169]
* Removal of dead code (older versions of Rails and AWS SDK) * Removal of dead code (older versions of Rails and AWS SDK)
* README adjustments * README adjustments
5.0.0.beta1 (2015-03-13): 5.0.0.beta1 (2016-03-13):
* Bug Fix: megabytes of mime-types info in logs when a spoofed media type is detected. * Bug Fix: megabytes of mime-types info in logs when a spoofed media type is detected.
* Drop support to end-of-life'd ruby 2.0. * Drop support to end-of-life'd ruby 2.0.
......
...@@ -166,7 +166,7 @@ Paperclip is distributed as a gem, which is how it should be used in your app. ...@@ -166,7 +166,7 @@ Paperclip is distributed as a gem, which is how it should be used in your app.
Include the gem in your Gemfile: Include the gem in your Gemfile:
```ruby ```ruby
gem "paperclip", "~> 5.0.0.beta1" gem "paperclip", "~> 5.0.0"
``` ```
Or, if you want to get the latest, you can get master from the main paperclip repository: Or, if you want to get the latest, you can get master from the main paperclip repository:
......
module Paperclip module Paperclip
VERSION = "5.0.0.beta2" unless defined? Paperclip::VERSION unless defined?(Paperclip::VERSION)
VERSION = "5.0.0".freeze
end
end end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment