Release 5.2.1

This commit is contained in:
Jared Beck 2016-09-02 18:37:46 -04:00
parent 5df7ef3510
commit 8d1b913e4b
3 changed files with 24 additions and 3 deletions

View File

@ -1,4 +1,25 @@
## ?.?.? (Unreleased)
# Changelog
This project follows [semver 2.0.0](http://semver.org/spec/v2.0.0.html) and the
recommendations of [keepachangelog.com](http://keepachangelog.com/).
## Unreleased
### Breaking Changes
- None
### Deprecated
- None
### Added
- None
### Fixed
## 5.2.1 (2016-09-02)
### 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.2.0 | https://github.com/airblade/paper_trail/blob/v5.2.0/README.md |
| 5.2.1 | https://github.com/airblade/paper_trail/blob/v5.2.1/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

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