summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-05-25 14:19:18 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-05-25 14:19:18 -0500
commita65a2db118ed714586ac4c56a0584c97bf0305df (patch)
treeef6cc66816149cb876641071a46290aae3074fb4
parent702ae2eac27f0e70b7507f4cd49dd1a5aaa42ce5 (diff)
downloadbundler-1.12.5.tar.gz
Version 1.12.5 with changelogv1.12.5
-rw-r--r--CHANGELOG.md7
-rw-r--r--lib/bundler/version.rb2
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 853706f643..5c5b50c0bf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## 1.12.5 (2016-05-25)
+
+Bugfixes:
+ - only take over `--help` on `bundle exec` when the first two arguments are `exec` and `--help` (#4596, @segiddins)
+ - don't require `require: true` dependencies that are excluded via `env` or `install_if` (@BrianHawley)
+ - reduce the number of threads used simultaneously by bundler (#4367, @will-in-wi)
+
## 1.12.4 (2016-05-16)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index db93547b5f..b1e8a49e25 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.12.4" unless defined?(::Bundler::VERSION)
+ VERSION = "1.12.5" unless defined?(::Bundler::VERSION)
end