Bump to 4.0.0 [ci skip]

This commit is contained in:
Ben Atkins 2015-07-29 23:17:16 -04:00
parent bba433a42c
commit f3b31fae03
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
## 4.0.0 (Unreleased) ## 4.0.0
This major release adds JSON column support in PostgreSQL, limited support for This major release adds JSON column support in PostgreSQL, limited support for
versioning associations, various new configuration options, and a year's worth versioning associations, various new configuration options, and a year's worth

View File

@ -66,7 +66,7 @@ The Rails 2.3 code is on the [`rails2`][11] branch and tagged `v1.x`. These bran
1. Add PaperTrail to your `Gemfile`. 1. Add PaperTrail to your `Gemfile`.
`gem 'paper_trail', '~> 4.0.0.rc'` `gem 'paper_trail', '~> 4.0.0'`
2. Generate a migration which will add a `versions` table to your database. 2. Generate a migration which will add a `versions` table to your database.
@ -89,7 +89,7 @@ setting up your app with PaperTrail will look something like this:
1. Add PaperTrail to your `Gemfile`. 1. Add PaperTrail to your `Gemfile`.
`gem 'paper_trail', '~> 4.0.0.rc'` `gem 'paper_trail', '~> 4.0.0'`
2. Generate a migration to add a `versions` table to your database. 2. Generate a migration to add a `versions` table to your database.

View File

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