diff --git a/CHANGELOG.md b/CHANGELOG.md index 53b058b..e1f9fde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,16 @@ ## Master (Unreleased) +## 3.8.0 (2020-01-22) + ### Fixed -* use Binding#source_location instead of evaluating __FILE__ to avoid warnings - for Ruby >= 2.6 (#221). +* Use `Binding#source_location` instead of evaluating `__FILE__` to avoid + warnings on Ruby 2.7 and on Ruby 2.6 in verbose mode (#221). + +### Removed + +* Support for Ruby 2.3. Pry-byebug no longer installs on this platform. ## 3.7.0 (2019-02-21) @@ -21,7 +27,7 @@ ### Fixed -* Allow other threads like Pry. (#142) +* Allow other threads like Pry (#142). ## 3.5.0 (2017-08-23) diff --git a/Gemfile.lock b/Gemfile.lock index 2bf127a..a3f696a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - pry-byebug (3.7.0) + pry-byebug (3.8.0) byebug (~> 11.0) pry (~> 0.10) diff --git a/lib/pry-byebug/version.rb b/lib/pry-byebug/version.rb index 492ca91..f9e09b8 100644 --- a/lib/pry-byebug/version.rb +++ b/lib/pry-byebug/version.rb @@ -4,5 +4,5 @@ # Main container module for Pry-Byebug functionality # module PryByebug - VERSION = "3.7.0" + VERSION = "3.8.0" end