summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-06-27 17:10:21 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-06-27 17:10:21 -0500
commit2b7bcadbc33b55037065db46a348a0cb7129d637 (patch)
tree787e6b4ea7c6a6e880deb4a601c5218a2df5cc6d
parenta09350bd970a6e838b3115d39fa86fba6a494c0c (diff)
downloadbundler-2b7bcadbc33b55037065db46a348a0cb7129d637.tar.gz
Version 1.13.0.rc.1 with changelogv1.13.0.rc.1
-rw-r--r--CHANGELOG.md17
-rw-r--r--lib/bundler/version.rb2
2 files changed, 18 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e602f96e7d..22d1f1fb95 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,20 @@
+## 1.13.0.rc.1 (2016-06-27)
+
+Features:
+
+ - when `bundle config major_deprecations` or `BUNDLE_MAJOR_DEPRECATIONS` is set, deprecation warnings for bundler 2 will be printed (@segiddins)
+ - when running with `--verbose`, bundler will print the reason it is re-resolving a gemfile (@segiddins)
+
+Bug fixes:
+
+ - fix support for running RubyGems 1.x on Ruby 2.3 (#4698, @segiddins)
+ - fix bundle exec'ing to a ruby file when gems are installed into a path (#4592, @chrismo)
+ - when multiple specs in a bundle have the same executable, prefer activating the one from the requested gem (#4705, @segiddins)
+ - stop changing the load path to require the vendored postit when trampolining (@segiddins)
+ - ensure relative paths are properly printed after completing an installation (@jenseng)
+ - fix re-resolving when there are multiple unchanged path sources (@segiddins)
+ - de-init submodules when running git 2.9 and requesting a git gem without submodules (@segiddins)
+
## 1.13.0.pre.1 (2016-06-20)
Performance:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index a66df62c39..bcee8f7201 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.13.0.pre.1" unless defined?(::Bundler::VERSION)
+ VERSION = "1.13.0.rc.1" unless defined?(::Bundler::VERSION)
end