From d84270fec4141f424006bdf4ad6a4cff4e1bd452 Mon Sep 17 00:00:00 2001 From: Jared Beck Date: Sun, 6 Aug 2023 22:29:35 -0400 Subject: [PATCH] Release 15.0.0 --- .github/CONTRIBUTING.md | 4 ++-- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 ++ lib/paper_trail/version_number.rb | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 66227a9f..e883f2e6 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index e3a38bef..ea25fdbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` diff --git a/README.md b/README.md index 47fe8b13..de7c0668 100644 --- a/README.md +++ b/README.md @@ -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), @@ -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 | diff --git a/lib/paper_trail/version_number.rb b/lib/paper_trail/version_number.rb index 1f8f3eac..ebba0754 100644 --- a/lib/paper_trail/version_number.rb +++ b/lib/paper_trail/version_number.rb @@ -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