From 89e498c3dbb9f82314f76eafe30b326d652ad8bf Mon Sep 17 00:00:00 2001 From: Ben Atkins Date: Fri, 14 Mar 2014 17:52:17 -0400 Subject: [PATCH] Bump to 3.0.1 [ci skip] --- CHANGELOG.md | 2 +- README.md | 4 ++-- lib/paper_trail/version_number.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7244c5e..8082281a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`. diff --git a/README.md b/README.md index 6338adad..1c6c976d 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/lib/paper_trail/version_number.rb b/lib/paper_trail/version_number.rb index 087ee9fb..292c1105 100644 --- a/lib/paper_trail/version_number.rb +++ b/lib/paper_trail/version_number.rb @@ -1,3 +1,3 @@ module PaperTrail - VERSION = '3.0.0' + VERSION = '3.0.1' end