Skip to content

Commit

Permalink
Get ready for 3.5.0 release (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
deivid-rodriguez authored Aug 26, 2017
1 parent 2f2ce20 commit 01ff9f3
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ script:
- bundle exec codeclimate-test-reporter || test true

rvm:
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## Master (Unreleased)

## 3.5.0 (2017-08-23)

### Added

* Byebug 9.1 support. As a result, Ruby 2.0 & Ruby 2.1 support has been dropped.
Pry-byebug no longer installs on these platforms.

## 3.4.3 (2017-08-22)

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

GEM
remote: https://rubygems.org/
specs:
addressable (2.4.0)
ast (2.3.0)
byebug (9.0.6)
byebug (9.1.0)
chandler (0.7.0)
netrc
octokit (>= 2.2.0)
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.3'.freeze
VERSION = '3.5.0'.freeze
end
4 changes: 2 additions & 2 deletions pry-byebug.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |gem|
gem.require_path = 'lib'

# Dependencies
gem.required_ruby_version = '>= 2.0.0'
gem.required_ruby_version = '>= 2.2.0'
gem.add_runtime_dependency 'pry', '~> 0.10'
gem.add_runtime_dependency 'byebug', '>= 9.0', '< 9.1'
gem.add_runtime_dependency 'byebug', '~> 9.1'
end

0 comments on commit 01ff9f3

Please sign in to comment.