Skip to content

Get ready for 3.8.0 release #260

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -21,7 +27,7 @@

### Fixed

* Allow other threads like Pry. (#142)
* Allow other threads like Pry (#142).

## 3.5.0 (2017-08-23)

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
pry-byebug (3.7.0)
pry-byebug (3.8.0)
byebug (~> 11.0)
pry (~> 0.10)

Expand Down
2 changes: 1 addition & 1 deletion lib/pry-byebug/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# Main container module for Pry-Byebug functionality
#
module PryByebug
VERSION = "3.7.0"
VERSION = "3.8.0"
end