diff --git a/CHANGELOG.md b/CHANGELOG.md index 0026372..75e9616 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ -## 1.4.0 - 2020-01-19 +## 1.4.1 - 2020-02-08 - YANKED + +* [#91](https://github.com/trusche/httplog/pull/91) Fixed bug returning empty response with HTTP gem + +## 1.4.0 - 2020-01-19 - YANKED * [#85](https://github.com/trusche/httplog/pull/85) Parse JSON response and apply deep masking diff --git a/Gemfile.lock b/Gemfile.lock index 9207a68..f5499ce 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - httplog (1.4.0) + httplog (1.4.1) rack (>= 1.0) rainbow (>= 2.0.0) diff --git a/lib/httplog/version.rb b/lib/httplog/version.rb index 10eafdf..1707392 100644 --- a/lib/httplog/version.rb +++ b/lib/httplog/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module HttpLog - VERSION = '1.4.0'.freeze + VERSION = '1.4.1'.freeze end