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

Commit ee55bca

Browse files
authored
Merge pull request #2239 from thoughtbot/tc-rel-v5
Release v5.0.0
2 parents 24674a2 + ecab8e5 commit ee55bca

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

NEWS

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
master:
22

3+
5.0.0 (2016-07-01):
4+
35
* Improvement: Add `read_timeout` configuration for URI Adapter download_content method.
46
* README adjustments for Ruby beginners (add links, elucidate model in Quick Start)
57
* Bugfix: Now it's possible to save images from URLs with special characters [#1932]
8+
* Bugfix: Return false when file to copy is not present in cloud storage [#2173]
9+
* Automatically close file while checking mime type [#2016]
10+
* Add `read_timeout` option to `UriAdapter#download_content` method [#2232]
611
* Fix a nil error in content type validation matcher [#1910]
12+
* Documentation improvements
713

8-
5.0.0.beta2 (2015-04-01):
14+
5.0.0.beta2 (2016-04-01):
915

1016
* Bugfix: Dynamic fog directory option is now respected
1117
* Bugfix: Fixes cocaine duplicated paths [#2169]
1218
* Removal of dead code (older versions of Rails and AWS SDK)
1319
* README adjustments
1420

15-
5.0.0.beta1 (2015-03-13):
21+
5.0.0.beta1 (2016-03-13):
1622

1723
* Bug Fix: megabytes of mime-types info in logs when a spoofed media type is detected.
1824
* Drop support to end-of-life'd ruby 2.0.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Paperclip is distributed as a gem, which is how it should be used in your app.
166166
Include the gem in your Gemfile:
167167

168168
```ruby
169-
gem "paperclip", "~> 5.0.0.beta1"
169+
gem "paperclip", "~> 5.0.0"
170170
```
171171

172172
Or, if you want to get the latest, you can get master from the main paperclip repository:

lib/paperclip/version.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
module Paperclip
2-
VERSION = "5.0.0.beta2" unless defined? Paperclip::VERSION
2+
unless defined?(Paperclip::VERSION)
3+
VERSION = "5.0.0".freeze
4+
end
35
end

0 commit comments

Comments
 (0)