summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2017-02-22 12:12:28 +1100
committerSamuel Giddins <segiddins@segiddins.me>2017-02-22 12:12:28 +1100
commit8c34c7eaf8dce2551cf77a92e0c98cc7297c8bf7 (patch)
tree9c757e384da8bbaeb531b3242f37f4c89f3afc7a
parentc6f3a9465c0dfc1ae3cc766b5d1f8399a26813d6 (diff)
downloadbundler-8c34c7eaf8dce2551cf77a92e0c98cc7297c8bf7.tar.gz
Version 1.14.5 with changelogv1.14.5
-rw-r--r--CHANGELOG.md15
-rw-r--r--lib/bundler/version.rb2
2 files changed, 16 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 633787a8ad..9f23135d7f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,18 @@
+## 1.14.5 (2017-02-22)
+
+Bugfixes:
+
+ - avoid loading all unused gemspecs during `bundle exec` on RubyGems 2.3+ (@segiddins)
+ - improve resolver performance when dependencies have zero or one total possibilities ignoring requirements (#5444, #5457, @segiddins)
+ - enable compact index when OpenSSL FIPS mode is enabled but not active (#5433, @wjordan)
+ - use github username instead of git name for the github url in `bundle gem` (#5438, @danielpclark)
+ - avoid a TypeError on RubyGems 2.6.8 when no build settings are set for native extensions (@okkez)
+ - fail gracefully when the dependency api is missing runtime dependencies for a gem (@segiddins)
+ - handle when a platform-specific gem has more dependencies than the ruby platform version (#5339, #5426, @segiddins)
+ - allow running bundler on a machine with no home directory where the temporary directory is not writable (#5371, @segiddins)
+ - avoid gem version conflicts on openssl using Ruby 2.5 (#5235, @rhenium)
+ - fail when installing in frozen mode and the dependencies for `gemspec` gems have changed without the lockfile being updated (#5264, @segiddins)
+
## 1.14.4 (2017-02-12)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 4ba59366d4..36cc05cb39 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.4" unless defined?(::Bundler::VERSION)
+ VERSION = "1.14.5" unless defined?(::Bundler::VERSION)
end