Skip to content

Commit

Permalink
Release version v4.3.1
Browse files Browse the repository at this point in the history
Removes note for running paperclip in EOL'd version of Rails (2.3).
  • Loading branch information
tute committed Sep 10, 2015
1 parent d331f3a commit e781486
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
11 changes: 10 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:https://en.wikipedia.org/wiki/File_(command)) is required for content-type checking.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/paperclip/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Paperclip
VERSION = "4.3.0" unless defined? Paperclip::VERSION
VERSION = "4.3.1" unless defined? Paperclip::VERSION
end

0 comments on commit e781486

Please sign in to comment.