diff options
author | Samuel Giddins <segiddins@segiddins.me> | 2016-10-22 01:17:22 -0500 |
---|---|---|
committer | Samuel Giddins <segiddins@segiddins.me> | 2016-10-22 01:17:22 -0500 |
commit | a79a6385640be23b46e2f6151424cec940d67486 (patch) | |
tree | 5c8b5132459d03cfe2489c2a54aed2e57392d6d1 | |
parent | 86bddc8c7189d3b2388853ff1e8c10187dd77bb7 (diff) | |
download | bundler-a79a6385640be23b46e2f6151424cec940d67486.tar.gz |
Version 1.13.6 with changelogv1.13.6
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | lib/bundler/version.rb | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 064aecf651..c02361f9e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.13.6 (2016-10-22) + +Bugfixes: + + - make the `gem` method public again, fixing a regression in 1.13.4 (#5102, @segiddins) + ## 1.13.5 (2016-10-15) Bugfixes: diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb index 9882c7ac0f..9cd9fb0064 100644 --- a/lib/bundler/version.rb +++ b/lib/bundler/version.rb @@ -7,5 +7,5 @@ module Bundler # We're doing this because we might write tests that deal # with other versions of bundler and we are unsure how to # handle this better. - VERSION = "1.13.5" unless defined?(::Bundler::VERSION) + VERSION = "1.13.6" unless defined?(::Bundler::VERSION) end |