summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-09-30 11:36:41 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-09-30 12:27:08 -0500
commitd391114b55114be34875463660367ff193174c4f (patch)
tree5d955597ee22a182a99532278345b58f434fba96
parent8e072830d5a85b5b8cfaa41a600005f83c5c30d8 (diff)
downloadbundler-d391114b55114be34875463660367ff193174c4f.tar.gz
Version 1.13.2 with changelogv1.13.2
-rw-r--r--CHANGELOG.md16
-rw-r--r--lib/bundler/version.rb2
2 files changed, 17 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e30e46aa31..7c8cb54b90 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,19 @@
+## 1.13.2 (2016-09-30)
+
+Bugfixes:
+
+ - allow `Settings` to be initialized without a root directory (@m1k3)
+ - allow specifying ruby engines in the gemfile as a symbol (#4919, @JuanitoFatas)
+ - avoid an execption when using `bundler/deployment` with Vlad (@srbaker)
+ - ensure redefined methods have the same visibility as the one they're replacing, fixing `Kernel.require` failing on JRuby (#4975, @segiddins)
+ - ensure that Bundler won't complain about a corrupt lockfile when no lockfile exists when using `gemspec` in the Gemfile (#5006, @segiddins)
+ - fail gracefully when parsing the metadata for a gemspec from the compact index fails (@segiddins)
+ - fix invoking bundler with binstubs generated by RubyGems 2.6.2+ (#4974, @chrismo)
+
+Performance:
+
+ - avoid parsing the lockfile twice when evaluating gemfiles (@segiddins)
+
## 1.13.1 (2016-09-13)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 2fcacc0f33..5bfcfbf071 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.1" unless defined?(::Bundler::VERSION)
+ VERSION = "1.13.2" unless defined?(::Bundler::VERSION)
end