summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2017-03-03 17:44:20 -0600
committerSamuel Giddins <segiddins@segiddins.me>2017-03-03 17:44:20 -0600
commit0c38a39ecf5e8c677ec26d21ca82f115f90c6c7e (patch)
tree3ceea45af081e25db3f6b259afc75ddf740a2828
parentffd9c70727fd797d6b934b9ec6a2f3fe25ca1c0a (diff)
downloadbundler-1-14-stable.tar.gz
Version 1.14.6 with changelogv1.14.61-14-stable
-rw-r--r--CHANGELOG.md10
-rw-r--r--lib/bundler/version.rb2
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9f23135d7f..02754f0d09 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+## 1.14.6 (2017-03-03)
+
+Bugfixes:
+
+ - avoid undefined constant `Bundler::Plugin::API::Source` exception (#5409, @segiddins)
+ - avoid incorrect warnings about needing to enable `specific_platform` (@segiddins)
+ - fail gracefully when the compact index does not send an ETag (#5463, @olleolleolle)
+ - ensure `bundle outdated --local` shows all outdated gems (#5430, @denniss)
+ - fix a case where ruby version requirements could lead to incorrect resolver conflicts (#5425, @segiddins)
+
## 1.14.5 (2017-02-22)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 36cc05cb39..9309eb39e3 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.14.5" unless defined?(::Bundler::VERSION)
+ VERSION = "1.14.6" unless defined?(::Bundler::VERSION)
end