Skip to content

Commit

Permalink
Release v5.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredbeck committed Sep 8, 2016
1 parent 6584678 commit a7620d5
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Expand Up @@ -102,7 +102,7 @@ DB=postgres bundle exec rake
- Update version number(s) in the documentation links table
1. Commit
1. git tag -a -m "v5.0.0" "v5.0.0" # or whatever number
1. git push --tags origin master
1. git push --tags origin 5-stable # or whatever branch
1. gem build paper_trail.gemspec
1. gem push paper_trail-5.0.0.gem

Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Expand Up @@ -20,6 +20,24 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).

### Fixed

## 5.2.2 (2016-09-08)

### Breaking Changes

- None

### Deprecated

- [#863](https://github.com/airblade/paper_trail/pull/863)
PaperTrail.timestamp_field= deprecated without replacement.
See [#861](https://github.com/airblade/paper_trail/pull/861) for discussion.

### Added

- None

### Fixed

## 5.2.1 (2016-09-02)

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -11,7 +11,7 @@ has been destroyed.
| Version | Documentation |
| -------------- | ------------- |
| Unreleased | https://github.com/airblade/paper_trail/blob/master/README.md |
| 5.2.1 | https://github.com/airblade/paper_trail/blob/v5.2.1/README.md |
| 5.2.2 | https://github.com/airblade/paper_trail/blob/v5.2.2/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 |
Expand Down
2 changes: 1 addition & 1 deletion lib/paper_trail/version_number.rb
Expand Up @@ -3,7 +3,7 @@ module PaperTrail
module VERSION
MAJOR = 5
MINOR = 2
TINY = 1
TINY = 2
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".").freeze
Expand Down

0 comments on commit a7620d5

Please sign in to comment.