Skip to content

Commit

Permalink
Release 6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredbeck committed Dec 4, 2016
1 parent 8e6efc6 commit a113e1c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion lib/paper_trail/version_number.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a113e1c

Please sign in to comment.