From a113e1c3b01fec4783230678eb0af9cc3c1c28f6 Mon Sep 17 00:00:00 2001 From: Jared Beck Date: Sun, 4 Dec 2016 17:13:20 -0500 Subject: [PATCH] Release 6.0.1 --- .github/CONTRIBUTING.md | 6 +++--- CHANGELOG.md | 15 +++++++++++++++ README.md | 3 ++- lib/paper_trail/version_number.rb | 2 +- 4 files changed, 21 insertions(+), 5 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 41f6df7c7..40634fa67 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -89,9 +89,9 @@ DB=postgres bundle exec appraisal ar-5.0 rake 1. In the changelog, - Replace "Unreleased" with the date in iso-8601 format - Add a new "Unreleased" section -1. In the readme, - - Update any other references to version number, including - - Update version number(s) in the documentation links table +1. In the readme, update references to version number, including + - documentation links table + - compatability table 1. Commit 1. git tag -a -m "v5.0.0" "v5.0.0" # or whatever number 1. git push --tags origin 5-stable # or whatever branch diff --git a/CHANGELOG.md b/CHANGELOG.md index 5efb7da38..6e6db56f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,21 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/). - None +## 6.0.1 (2016-12-04) + +### Breaking Changes + +- None + +### Added + +- None + +### Fixed + +- Remove rails 3 features that are no longer supported, most notably, + `protected_attributes`. + ## 6.0.0 (2016-12-03) Now with rails 5.1 support, and less model pollution! About 40 methods that were diff --git a/README.md b/README.md index 3691dc5f2..11a109d1d 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,8 @@ has been destroyed. | Version | Documentation | | -------------- | ------------- | -| 6.0.0 | https://github.com/airblade/paper_trail/blob/master/README.md | +| Unreleased | https://github.com/airblade/paper_trail/blob/master/README.md | +| 6.0.1 | https://github.com/airblade/paper_trail/blob/v6.0.1/README.md | | 5.2.3 | https://github.com/airblade/paper_trail/blob/v5.2.3/README.md | | 4.2.0 | https://github.com/airblade/paper_trail/blob/v4.2.0/README.md | | 3.0.9 | https://github.com/airblade/paper_trail/blob/v3.0.9/README.md | diff --git a/lib/paper_trail/version_number.rb b/lib/paper_trail/version_number.rb index 6ceb05849..158e6b633 100644 --- a/lib/paper_trail/version_number.rb +++ b/lib/paper_trail/version_number.rb @@ -3,7 +3,7 @@ module PaperTrail module VERSION MAJOR = 6 MINOR = 0 - TINY = 0 + TINY = 1 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".").freeze