Release 10.3.1

This commit is contained in:
Jared Beck 2019-07-31 16:50:18 -04:00
parent 167579bc1d
commit 392b14b134
3 changed files with 21 additions and 3 deletions

View File

@ -17,9 +17,24 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).
- None
## 10.3.1 (2019-07-31)
### Breaking Changes
- None
### Added
- None
### Fixed
- None
### Dependencies
- Allow contributors to install incompatible versions of ActiveRecord.
- [#1213](https://github.com/paper-trail-gem/paper_trail/pull/1213) - Allow
contributors to install incompatible versions of ActiveRecord.
See discussion in paper_trail/compatibility.rb
## 10.3.0 (2019-04-09)

View File

@ -16,7 +16,7 @@ are welcome.
| Version | Documentation |
| -------------- | ------------- |
| Unreleased | https://github.com/paper-trail-gem/paper_trail/blob/master/README.md |
| 10.3.0 | https://github.com/paper-trail-gem/paper_trail/blob/v10.3.0/README.md |
| 10.3.1 | https://github.com/paper-trail-gem/paper_trail/blob/v10.3.1/README.md |
| 9.2.0 | https://github.com/paper-trail-gem/paper_trail/blob/v9.2.0/README.md |
| 8.1.2 | https://github.com/paper-trail-gem/paper_trail/blob/v8.1.2/README.md |
| 7.1.3 | https://github.com/paper-trail-gem/paper_trail/blob/v7.1.3/README.md |
@ -97,6 +97,9 @@ are welcome.
| 2 | 2.7-stable | >= 1.8.7 | >= 3.0, < 4 |
| 1 | rails2 | >= 1.8.7 | >= 2.3, < 3 |
Experts: to install incompatible versions of activerecord, see
`paper_trail/compatibility.rb`.
### 1.b. Installation
1. Add PaperTrail to your `Gemfile`.

View File

@ -9,7 +9,7 @@ module PaperTrail
module VERSION
MAJOR = 10
MINOR = 3
TINY = 0
TINY = 1
# Set PRE to nil unless it's a pre-release (beta, rc, etc.)
PRE = nil