From e7814861e25b5b9724a6560e44fb7bdade54c06a Mon Sep 17 00:00:00 2001 From: Tute Costa Date: Sat, 5 Sep 2015 18:05:00 -0400 Subject: [PATCH] Release version v4.3.1 Removes note for running paperclip in EOL'd version of Rails (2.3). --- NEWS | 11 ++++++++++- README.md | 12 +++++------- lib/paperclip/version.rb | 2 +- 3 files changed, 16 insertions(+), 9 deletions(-) diff --git a/NEWS b/NEWS index 9f3769d92..0d7832b45 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,13 @@ -4.3.0: +4.3.1 (9/9/2015): + +* Backport of bugfix to `remove_column`, so it works in Rails 3 and 4 + c740fb171fe2f88c60b999d2a1c2122f2b8f43e9 +* Fix GeometryParser regex for usage of '@>' flag +* `url` on a unpersisted record returns default_url +* spec deprecation warnings and failures +* README adjustments + +4.3.0 (6/18/2015): * Improvement: Update aws-sdk and cucumber gem versions. * Improvement: Add `length` alias for `size` method in AbstractAdapter. diff --git a/README.md b/README.md index 9e8001d25..05e682c65 100644 --- a/README.md +++ b/README.md @@ -94,11 +94,15 @@ If you are dealing with pdf uploads or running the test suite, you'll also need to install GhostScript. On Mac OS X, you can also install that using Homebrew: brew install gs - + If you're on Ubuntu, you'll want to run the following with apt-get: sudo apt-get install imagemagick -y +If you're on Ubuntu (or any Debian base Linux distribution), you'll want to run the following with apt-get: + + sudo apt-get install imagemagick -y + ### `file` The Unix [`file` command](http://en.wikipedia.org/wiki/File_(command)) is required for content-type checking. @@ -150,12 +154,6 @@ Include the gem in your Gemfile: gem "paperclip", "~> 4.3" ``` -If you're still using Rails 2.3.x, you should do this instead: - -```ruby -gem "paperclip", "~> 2.7" -``` - Or, if you want to get the latest, you can get master from the main paperclip repository: ```ruby diff --git a/lib/paperclip/version.rb b/lib/paperclip/version.rb index b464526db..28ca2b918 100644 --- a/lib/paperclip/version.rb +++ b/lib/paperclip/version.rb @@ -1,3 +1,3 @@ module Paperclip - VERSION = "4.3.0" unless defined? Paperclip::VERSION + VERSION = "4.3.1" unless defined? Paperclip::VERSION end