Skip to content

Commit

Permalink
Release 15.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredbeck committed Aug 7, 2023
1 parent 607eb7d commit d84270f
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ markdown-toc -i --maxdepth 3 --bullets='-' README.md
- Replace "Unreleased" with the date in ISO-8601 format
- Add a new "Unreleased" section
1. In the readme, update references to version number, including
- documentation links table
- list of documentation versions
- compatability table, if necessary
1. git commit -am 'Release 10.3.0'
1. git push origin release-10.3.0
1. git push -u origin release-10.3.0
1. Pull request into `10-stable`, CI pass, merge PR
1. Release
1. git checkout 10-stable && git pull
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).

### Added

- None

### Fixed

- None

## 15.0.0 (2023-08-06)

### Breaking Changes

- None

### Added

- [#1416](https://github.com/paper-trail-gem/paper_trail/pull/1416) - Adds a
model-configurable option `synchronize_version_creation_timestamp` which, if
set to false, opts out of synchronizing timestamps between `Version.created_at`
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ This is the _user guide_. See also, the

Choose version:
[Unreleased](https://github.com/paper-trail-gem/paper_trail/blob/master/README.md),
[15.0](https://github.com/paper-trail-gem/paper_trail/blob/v15.0.0/README.md),
[14.0](https://github.com/paper-trail-gem/paper_trail/blob/v14.0.0/README.md),
[13.0](https://github.com/paper-trail-gem/paper_trail/blob/v13.0.0/README.md),
[12.3](https://github.com/paper-trail-gem/paper_trail/blob/v12.3.0/README.md),
Expand Down Expand Up @@ -92,6 +93,7 @@ Choose version:
| paper_trail | branch | ruby | activerecord |
|-------------|------------|----------|---------------|
| unreleased | master | >= 3.0.0 | >= 6.1, < 7.1 |
| 15 | 15-stable | >= 3.0.0 | >= 6.1, < 7.1 |
| 14 | 14-stable | >= 2.7.0 | >= 6.0, < 7.1 |
| 13 | 13-stable | >= 2.6.0 | >= 5.2, < 7.1 |
| 12 | 12-stable | >= 2.6.0 | >= 5.2, < 7.1 |
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 @@ -7,7 +7,7 @@ module PaperTrail
# because of this confusion, but it's not worth the breaking change.
# People are encouraged to use `PaperTrail.gem_version` instead.
module VERSION
MAJOR = 14
MAJOR = 15
MINOR = 0
TINY = 0

Expand Down

0 comments on commit d84270f

Please sign in to comment.