Release 5.1.0

This commit is contained in:
Jared Beck 2016-05-20 19:19:29 -04:00
parent 8ad601b83f
commit 17c8f34f18
3 changed files with 19 additions and 4 deletions

View File

@ -96,7 +96,8 @@ DB=postgres bundle exec rake
1. In the readme,
- remove "unreleased" from the doc versions table
- update any other references to version number
1. Commit and tag with `git tag -a -m "v5.0.0" "v5.0.0"`
1. Commit
1. Tag with `git tag -a -m "v5.0.0" "v5.0.0"`
1. `git push --tags origin master`
1. `gem build paper_trail.gemspec`
1. `gem push paper_trail-5.0.0.gem`

View File

@ -1,4 +1,18 @@
## 5.1.0 (Unreleased)
## 5.?.? (Unreleased)
### Breaking Changes
- None
### Added
- None
### Fixed
- None
## 5.1.0 (2016-05-20)
### Breaking Changes

View File

@ -2,8 +2,8 @@ module PaperTrail
# :nodoc:
module VERSION
MAJOR = 5
MINOR = 0
TINY = 1
MINOR = 1
TINY = 0
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".").freeze