Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Rails 5.1 RC2 #207

Merged
merged 2 commits into from
Apr 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

### 0.5.0.rc2

* Rails 5.1 RC2 support [#207](https://github.com/roidrage/lograge/pull/207)

### 0.5.0.rc1

* Rails 5.1 RC1 support [#205](https://github.com/roidrage/lograge/pull/205)
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ gemspec
gem 'pry', group: :development

group :test do
gem 'actionpack', '5.1.0.rc1'
gem 'activerecord', '5.1.0.rc1'
gem 'actionpack', '5.1.0.rc2'
gem 'activerecord', '5.1.0.rc2'
# logstash does not release any gems on rubygems, but they have two gemspecs within their repo.
# Using the tag is an attempt of having a stable version to test against where we can ensure that
# we test against the correct code.
Expand Down
2 changes: 1 addition & 1 deletion lib/lograge/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Lograge
VERSION = '0.5.0.rc1'.freeze
VERSION = '0.5.0.rc2'.freeze
end
6 changes: 3 additions & 3 deletions lograge.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop', '0.46.0'

s.add_runtime_dependency 'activesupport', '>= 4', '<= 5.1.0.rc1'
s.add_runtime_dependency 'actionpack', '>= 4', '<= 5.1.0.rc1'
s.add_runtime_dependency 'railties', '>= 4', '<= 5.1.0.rc1'
s.add_runtime_dependency 'activesupport', '>= 4', '<= 5.1.0.rc2'
s.add_runtime_dependency 'actionpack', '>= 4', '<= 5.1.0.rc2'
s.add_runtime_dependency 'railties', '>= 4', '<= 5.1.0.rc2'
end