Bump to 3.0.2 [ci skip]

This commit is contained in:
Ben Atkins 2014-05-12 10:48:16 -04:00
parent 7a5fe33067
commit 1880df9b61
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
## 3.0.2 (Unreleased)
## 3.0.2
- [#357](https://github.com/airblade/paper_trail/issues/357) - If a `Version` instance is reified and then persisted at that state,
it's timestamp attributes for update should still get `touch`ed.

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.1'`
`gem 'paper_trail', '~> 3.0.2'`
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.1'`
`gem 'paper_trail', '~> 3.0.2'`
2. Generate a migration to add a `versions` table to your database.

View File

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