From 0c38a39ecf5e8c677ec26d21ca82f115f90c6c7e Mon Sep 17 00:00:00 2001 From: Samuel Giddins Date: Fri, 3 Mar 2017 17:44:20 -0600 Subject: [PATCH] Version 1.14.6 with changelog --- CHANGELOG.md | 10 ++++++++++ lib/bundler/version.rb | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f23135d7f8..02754f0d093 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 36cc05cb39f..9309eb39e3b 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