Release 6.0.0

This commit is contained in:
Jared Beck 2016-12-03 20:24:16 -05:00
parent 2f97bad156
commit 6e7acc1628
4 changed files with 20 additions and 9 deletions

View File

@ -3,7 +3,21 @@
This project follows [semver 2.0.0](http://semver.org/spec/v2.0.0.html) and the
recommendations of [keepachangelog.com](http://keepachangelog.com/).
## 6.0.0 (Unreleased)
## Unreleased
### Breaking Changes
- None
### Added
- None
### Fixed
- None
## 6.0.0 (2016-12-03)
Now with rails 5.1 support, and less model pollution! About 40 methods that were
polluting your models' namespaces have been removed, reducing the chances of a

View File

@ -10,7 +10,7 @@ has been destroyed.
| Version | Documentation |
| -------------- | ------------- |
| Unreleased | https://github.com/airblade/paper_trail/blob/master/README.md |
| 6.0.0 | https://github.com/airblade/paper_trail/blob/master/README.md |
| 5.2.3 | https://github.com/airblade/paper_trail/blob/v5.2.3/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 |
@ -62,7 +62,7 @@ has been destroyed.
| paper_trail | branch | tags | ruby | activerecord |
| -------------- | ---------- | ------ | -------- | ------------- |
| 6 (unreleased) | master | | >= 1.9.3 | >= 4.0, < 6 |
| 6 | master | v6.x | >= 1.9.3 | >= 4.0, < 6 |
| 5 | 5-stable | v5.x | >= 1.9.3 | >= 3.0, < 5.1 |
| 4 | 4-stable | v4.x | >= 1.8.7 | >= 3.0, < 5.1 |
| 3 | 3.0-stable | v3.x | >= 1.8.7 | >= 3.0, < 5 |

View File

@ -4,7 +4,7 @@ module PaperTrail
MAJOR = 6
MINOR = 0
TINY = 0
PRE = "pre".freeze
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".").freeze

View File

@ -20,11 +20,8 @@ Gem::Specification.new do |s|
s.required_rubygems_version = ">= 1.3.6"
s.required_ruby_version = ">= 1.9.3"
# Rails 5.1 will deprecate the current behavior of AR::Dirty
# (https://github.com/rails/rails/pull/25337) which is pretty important
# to PT. I haven't found good instructions yet on how to upgrade, but
# Sean Griffin described it as easy, on his podcast (http://bikeshed.fm/87).
s.add_dependency "activerecord", [">= 4.0", "< 5.1"]
# Rails does not follow semver, makes breaking changes in minor versions.
s.add_dependency "activerecord", [">= 4.0", "< 5.2"]
s.add_dependency "request_store", "~> 1.1"
s.add_development_dependency "appraisal", "~> 2.1"