Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveitaly committed Mar 30, 2022
1 parent 27b3b06 commit 7cb5b0a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ Gemfile.lock
coverage
gemfiles/*.lock
pkg/*
vendor/bundle
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

### Unreleased

* Preserve original Action Cable functionality by using `prepend` instead of redefining methods [#310](https://github.com/roidrage/lograge/pull/310)
### 0.12.0

* Preserve original Action Cable functionality by using `prepend` instead of redefining methods [#310](https://github.com/roidrage/lograge/pull/310)
* Return a `Rack::BodyProxy` from the `Rails::Rack::Logger` monkey patch, this ensures the same return type as Rails [#333](https://github.com/roidrage/lograge/pull/333)

### 0.11.2
Expand Down
2 changes: 1 addition & 1 deletion lib/lograge/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Lograge
VERSION = '0.11.2'
VERSION = '0.12.0'
end
9 changes: 6 additions & 3 deletions lograge.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@ require './lib/lograge/version'
Gem::Specification.new do |s|
s.name = 'lograge'
s.version = Lograge::VERSION
s.authors = ['Mathias Meyer', 'Ben Lovell']
s.email = ['[email protected]', '[email protected]']
s.authors = ['Mathias Meyer', 'Ben Lovell', 'Michael Bianco']
s.email = ['[email protected]', '[email protected]', '[email protected]']
s.homepage = 'https://github.com/roidrage/lograge'
s.summary = "Tame Rails' multi-line logging into a single line per request"
s.description = "Tame Rails' multi-line logging into a single line per request"
s.license = 'MIT'

s.metadata = { 'rubygems_mfa_required' => 'true' }
s.metadata = {
'rubygems_mfa_required' => 'true',
'changelog_uri' => 'https://github.com/roidrage/lograge/blob/master/CHANGELOG.md'
}

# NOTE(ivy): Ruby version 2.5 is the oldest syntax supported by Rubocop.
s.required_ruby_version = '>= 2.5'
Expand Down

0 comments on commit 7cb5b0a

Please sign in to comment.