summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-04-15 15:47:21 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-04-15 15:47:21 -0500
commit009ac70f7499bf5df535220344348c8f4ac35163 (patch)
tree435e84d56d3a19fc7a58a286cec94814a0b78a03
parent7c5305c7ab0284c6d1674a6476da5df4f1f9194b (diff)
downloadbundler-1.12.0.rc.2.tar.gz
Version 1.12.0.rc.2 with changelogv1.12.0.rc.2
-rw-r--r--CHANGELOG.md12
-rw-r--r--lib/bundler/version.rb2
2 files changed, 13 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a8d31ad863..8f2cf07716 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,15 @@
+## 1.12.0.rc.2 (2016-04-15)
+
+Features:
+
+ - `bundle outdated` handles all combinations of `--major`, `--minor`, and `--patch` (#4396, @RochesterinNYC)
+
+Bugfixes:
+
+ - prevent endless recursive copy for `bundle package --all` (#4392, @RochesterinNYC)
+ - allow executables that are `load`ed to exit non-0 via an `at_exit` hook when invoked by `bundle exec` (@segiddins)
+ - nested invocations of `bundle exec` properly preserve the `$PATH` and `$GEM_PATH` environment variables (@segiddins)
+
## 1.12.0.rc (2016-03-13)
Performance:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index d4e2d19efb..8a8241874a 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.0.rc" unless defined?(::Bundler::VERSION)
+ VERSION = "1.12.0.rc.2" unless defined?(::Bundler::VERSION)
end