Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #2239 from thoughtbot/tc-rel-v5
Browse files Browse the repository at this point in the history
Release v5.0.0
  • Loading branch information
tute committed Jul 1, 2016
2 parents 24674a2 + ecab8e5 commit ee55bca
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 8 additions & 2 deletions NEWS
@@ -1,18 +1,24 @@
master:

5.0.0 (2016-07-01):

* Improvement: Add `read_timeout` configuration for URI Adapter download_content method.
* 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: 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]
* 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: Fixes cocaine duplicated paths [#2169]
* Removal of dead code (older versions of Rails and AWS SDK)
* 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.
* Drop support to end-of-life'd ruby 2.0.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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:

```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:
Expand Down
4 changes: 3 additions & 1 deletion lib/paperclip/version.rb
@@ -1,3 +1,5 @@
module Paperclip
VERSION = "5.0.0.beta2" unless defined? Paperclip::VERSION
unless defined?(Paperclip::VERSION)
VERSION = "5.0.0".freeze
end
end

0 comments on commit ee55bca

Please sign in to comment.