Bump version number to 4.0.0.rc1 [ci skip]

This commit is contained in:
Ben Atkins 2015-05-09 01:19:18 -04:00
parent f31e4f052b
commit 8effed380e
2 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,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', '~> 4.0.0.beta'`
`gem 'paper_trail', '~> 4.0.0.rc'`
2. Generate a migration which will add a `versions` table to your database.
@ -66,7 +66,7 @@ your applications `ActiveRecord` connection in a manner similar to the way `Rail
1. Add PaperTrail to your `Gemfile`.
`gem 'paper_trail', '~> 4.0.0.beta'`
`gem 'paper_trail', '~> 4.0.0.rc'`
2. Generate a migration to add a `versions` table to your database.

View File

@ -3,7 +3,7 @@ module PaperTrail
MAJOR = 4
MINOR = 0
TINY = 0
PRE = 'beta3'
PRE = 'rc1'
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')