Release 6.0.1

This commit is contained in:
Jared Beck 2016-12-04 17:13:20 -05:00
parent 8e6efc6052
commit a113e1c3b0
4 changed files with 21 additions and 5 deletions

View File

@ -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

View File

@ -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

View File

@ -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 |

View File

@ -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