Release 5.2.0

This commit is contained in:
Jared Beck 2016-06-27 01:22:47 -04:00
parent 38edb1c460
commit 65cd2517f6
4 changed files with 31 additions and 11 deletions

View File

@ -92,14 +92,16 @@ DB=postgres bundle exec rake
1. Set the version in lib/paper_trail/version_number.rb
- Set PRE to nil unless it's a pre-release (beta, rc, etc.)
1. In the changelog, replace "Unreleased" with the date.
1. In the changelog,
- Replace "Unreleased" with the date in iso-8601 format
- Add a new "Unreleased" section
1. In the readme,
- remove "unreleased" from the doc versions table
- update any other references to version number
- Update any other references to version number, including
- Update version number(s) in the documentation links table
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`
1. git tag -a -m "v5.0.0" "v5.0.0" # or whatever number
1. git push --tags origin master
1. gem build paper_trail.gemspec
1. gem push paper_trail-5.0.0.gem
[1]: https://github.com/airblade/paper_trail/blob/master/doc/bug_report_template.rb

View File

@ -1,4 +1,22 @@
## 5.2.0 (Unreleased)
## ?.?.? (Unreleased)
### Breaking Changes
- None
### Deprecated
- None
### Added
- None
### Fixed
- None
## 5.2.0 (2016-06-27)
### Breaking Changes

View File

@ -11,7 +11,7 @@ has been destroyed.
| Version | Documentation |
| -------------- | ------------- |
| Unreleased | https://github.com/airblade/paper_trail/blob/master/README.md |
| 5.1.1 | https://github.com/airblade/paper_trail/blob/v5.1.1/README.md |
| 5.2.0 | https://github.com/airblade/paper_trail/blob/v5.2.0/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 |
| 2.7.2 | https://github.com/airblade/paper_trail/blob/v2.7.2/README.md |

View File

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