Skip to content

Commit

Permalink
Merge pull request #208 from maschwenk/master
Browse files Browse the repository at this point in the history
Support Rails 5.1
  • Loading branch information
benlovell committed Apr 28, 2017
2 parents a6daf51 + 89ae3ec commit 10c53c5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
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

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

### 0.5.0.rc2

* Rails 5.1 RC2 support [#207](https://github.com/roidrage/lograge/pull/207)
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.rc2'
gem 'activerecord', '5.1.0.rc2'
gem 'actionpack', '5.1.0'
gem 'activerecord', '5.1.0'
# 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.rc2'.freeze
VERSION = '0.5.0'.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.rc2'
s.add_runtime_dependency 'actionpack', '>= 4', '<= 5.1.0.rc2'
s.add_runtime_dependency 'railties', '>= 4', '<= 5.1.0.rc2'
s.add_runtime_dependency 'activesupport', '>= 4', '<= 5.1.0'
s.add_runtime_dependency 'actionpack', '>= 4', '<= 5.1.0'
s.add_runtime_dependency 'railties', '>= 4', '<= 5.1.0'
end

0 comments on commit 10c53c5

Please sign in to comment.