This commit is contained in:
lyfeyaj 2014-03-15 13:43:23 +08:00
commit c835c3e97c
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
## 3.0.1 (Unreleased)
## 3.0.1
- [#340](https://github.com/airblade/paper_trail/issues/340) - Prevent potential error encountered when using the `InstallGenerator`
with Rails `4.1.0.rc1`.

View File

@ -42,7 +42,7 @@ The Rails 2.3 code is on the [`rails2`](https://github.com/airblade/paper_trail/
1. Add `PaperTrail` to your `Gemfile`.
`gem 'paper_trail', '~> 3.0.0'`
`gem 'paper_trail', '~> 3.0.1'`
2. Generate a migration which will add a `versions` table to your database.
@ -64,7 +64,7 @@ your applications `ActiveRecord` connection in a manner similar to the way `Rail
1. Add `PaperTrail` to your `Gemfile`.
`gem 'paper_trail', '~> 3.0.0'`
`gem 'paper_trail', '~> 3.0.1'`
2. Generate a migration to add a `versions` table to your database.

View File

@ -1,3 +1,3 @@
module PaperTrail
VERSION = '3.0.0'
VERSION = '3.0.1'
end