Skip to content

Commit

Permalink
Rails 6.1 compatibility (#61)
Browse files Browse the repository at this point in the history
* updated paper_trail version for rails 6.1 compatibility

* updated pg version, generated gemfile.lock

* changed gem version, updated changelog
  • Loading branch information
madding authored Feb 17, 2021
1 parent 55ff4cf commit 7b0b9ba
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).

## Unreleased

## 0.1.21 (2021-02-16) Rails 6.1 compatibility

### Fixed

- Updated dependency gem versions

## 0.1.20 (2020-12-24) Bugfix Release

### Fixed
Expand Down
13 changes: 6 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
PATH
remote: .
specs:
paper_trail_scrapbook (0.1.19)
paper_trail_scrapbook (0.1.21)
activerecord
adamantium
concord
paper_trail (>= 5.2, <= 10.2.1)
paper_trail (>= 5.2, <= 11.1.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -100,13 +100,13 @@ GEM
rspec-core (>= 3.4.0, < 3.7.0)
nokogiri (1.10.8)
mini_portile2 (~> 2.4.0)
paper_trail (10.2.1)
activerecord (>= 4.2, < 6.1)
paper_trail (10.3.1)
activerecord (>= 4.2)
request_store (~> 1.1)
parallel (1.12.1)
parser (2.4.0.2)
ast (~> 2.3)
pg (0.18.4)
pg (1.2.3)
powerpack (0.1.1)
procto (0.0.3)
rack (2.2.3)
Expand Down Expand Up @@ -180,7 +180,6 @@ GEM

PLATFORMS
ruby
x86_64-darwin-20

DEPENDENCIES
codeclimate-test-reporter (~> 1.0.7)
Expand All @@ -190,7 +189,7 @@ DEPENDENCIES
mutant
mutant-rspec
paper_trail_scrapbook!
pg (= 0.18.4)
pg (= 1.2.3)
rack (>= 2.0.6)
railties (= 5.2.3)
rake (~> 13.0.1)
Expand Down
2 changes: 1 addition & 1 deletion lib/paper_trail_scrapbook/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module PaperTrailScrapbook
# Current version
VERSION = '0.1.20'
VERSION = '0.1.21'
end
4 changes: 2 additions & 2 deletions paper_trail_scrapbook.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |gem|
gem.add_dependency 'activerecord'
gem.add_dependency 'adamantium'
gem.add_dependency 'concord'
gem.add_dependency 'paper_trail', ['>= 5.2', '<= 10.2.1']
gem.add_dependency 'paper_trail', ['>= 5.2', '<= 11.1.0']

gem.add_development_dependency 'ffaker', '~> 2.5'
gem.add_development_dependency 'rake', '~> 13.0.1'
Expand All @@ -34,7 +34,7 @@ Gem::Specification.new do |gem|
gem.add_development_dependency 'loofah', '~> 2.3.1'
gem.add_development_dependency 'mutant'
gem.add_development_dependency 'mutant-rspec'
gem.add_development_dependency 'pg', '= 0.18.4'
gem.add_development_dependency 'pg', '= 1.2.3'
gem.add_development_dependency 'rspec-rails'
gem.add_development_dependency 'rspec-jumpstart'
gem.add_development_dependency 'rspec_junit_formatter'
Expand Down

0 comments on commit 7b0b9ba

Please sign in to comment.