diff options
author | Samuel Giddins <segiddins@segiddins.me> | 2017-04-23 10:38:15 +0200 |
---|---|---|
committer | Samuel Giddins <segiddins@segiddins.me> | 2017-04-23 10:38:15 +0200 |
commit | f22a3dabfce751a0edb1089a89c853ca589b2265 (patch) | |
tree | 72fd41a1eae586a410ce47d298c0f7c300b4b2a6 | |
parent | 763ff24e2ae00f713125248387d025ea739edd77 (diff) | |
download | bundler-f22a3dabfce751a0edb1089a89c853ca589b2265.tar.gz |
Version 1.15.0.pre.2 with changelogv1.15.0.pre.2
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | lib/bundler/version.rb | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 43e86bc4dd..d8b3c74dd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.15.0.pre.2 (2017-04-23) + +Bugfixes: + + - ensure pre-existing fit caches are updated from remote sources (#5423, @alextaylor000) + - avoid duplicating specs in the lockfile after updating with the gem uninstalled (#5599, @segiddins) + - ensure git gems have their extensions available at runtime (#5594, @jules2689, @segiddins) + ## 1.15.0.pre.1 (2017-04-16) Features: diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb index c8153cc90b..68223d9099 100644 --- a/lib/bundler/version.rb +++ b/lib/bundler/version.rb @@ -7,7 +7,7 @@ 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.15.0.pre.1" unless defined?(::Bundler::VERSION) + VERSION = "1.15.0.pre.2" unless defined?(::Bundler::VERSION) def self.overwrite_loaded_gem_version begin |