Skip to content

Commit

Permalink
Get ready for 3.4.3 release
Browse files Browse the repository at this point in the history
Bug fix release to fix installation for old rubies after byebug dropped
support for them.
  • Loading branch information
deivid-rodriguez committed Aug 22, 2017
1 parent f87f398 commit 078b941
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Master (Unreleased)

## 3.4.3 (2017-08-22)

## Fixed

* Installation on old rubies after byebug dropping support for them.

## 3.4.2 (2016-12-06)

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
pry-byebug (3.4.2)
byebug (~> 9.0)
pry-byebug (3.4.3)
byebug (>= 9.0, < 9.1)
pry (~> 0.10)

GEM
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 @@ -2,5 +2,5 @@
# Main container module for Pry-Byebug functionality
#
module PryByebug
VERSION = '3.4.2'.freeze
VERSION = '3.4.3'.freeze
end
2 changes: 1 addition & 1 deletion pry-byebug.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ Gem::Specification.new do |gem|
# Dependencies
gem.required_ruby_version = '>= 2.0.0'
gem.add_runtime_dependency 'pry', '~> 0.10'
gem.add_runtime_dependency 'byebug', '~> 9.0'
gem.add_runtime_dependency 'byebug', '>= 9.0', '< 9.1'
end

0 comments on commit 078b941

Please sign in to comment.