diff --git a/.gitignore b/.gitignore index 7da846f9..58f437c2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ Gemfile.lock coverage gemfiles/*.lock pkg/* +vendor/bundle \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d5ef51e..287baa9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/lib/lograge/version.rb b/lib/lograge/version.rb index 405aa6c6..e2749522 100644 --- a/lib/lograge/version.rb +++ b/lib/lograge/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Lograge - VERSION = '0.11.2' + VERSION = '0.12.0' end diff --git a/lograge.gemspec b/lograge.gemspec index eb09d4f9..fe7ce53a 100644 --- a/lograge.gemspec +++ b/lograge.gemspec @@ -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 = ['meyer@paperplanes.de', 'benjamin.lovell@gmail.com'] + s.authors = ['Mathias Meyer', 'Ben Lovell', 'Michael Bianco'] + s.email = ['meyer@paperplanes.de', 'benjamin.lovell@gmail.com', 'mike@mikebian.co'] 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'