summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2014-03-08 17:26:05 -0800
committerAndre Arko <andre@arko.net>2014-03-08 17:26:05 -0800
commit4d29adeee6e000e309674ee38ce3c027cec3534d (patch)
tree9f82f6eb50b4eaf25f4016100bfb5e060b8b645e
parent4df9b7e7c2ee3c2e98fb3887d30e31824b5805f7 (diff)
downloadbundler-1.6.0.rc2.tar.gz
Version 1.6.0.rc2 with changelogv1.6.0.rc2
-rw-r--r--CHANGELOG.md6
-rw-r--r--lib/bundler/version.rb2
2 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e557b7bd1d..95304c08e5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,10 @@ Bugfixes:
- allow long config values (#2823, @kgrz)
- cache successfully even locked to gems shipped with Ruby (#2869, @aughr)
- respect NO_PROXY even if a proxy is configured (#2878, @stlay)
+ - only retry git commands that hit the network (#2899, @timmoore)
+ - fix NameError regression when OpenSSL is not available (#2898, @timmoore)
+ - handle exception installing when build_info owned by root (@Who828)
+ - skip HTTP redirects from rubygems.org, huge speed boost (@Who828)
Features:
@@ -21,7 +25,7 @@ Features:
- highlight installed or updated gems (#2722, #2741, @yaotti, @simi)
- display the `post_install_message` for gems installed via :git (@phallstrom)
- `bundle outdated --strict` now only reports allowed updates (@davidblondeau)
- - `bundle show --verbose` Add gem ummary to the output (@lardcanoe)
+ - `bundle show --verbose` Add gem summary to the output (@lardcanoe)
- `bundle gem GEM --ext` now generates a skeleton for a C extension (@superdealloc)
## 1.5.3 (2014-02-06)
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 79e7728b77..4754828166 100644
--- a/lib/bundler/version.rb
+++ b/lib/bundler/version.rb
@@ -2,5 +2,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.6.0.rc" unless defined?(::Bundler::VERSION)
+ VERSION = "1.6.0.rc2" unless defined?(::Bundler::VERSION)
end