summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md14
-rw-r--r--lib/bundler/version.rb2
2 files changed, 15 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5ed3a4ff7a..8dae0cfdc0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,17 @@
+## 1.6.2 (2014-04-13)
+
+Bugfixes:
+
+ - fix an exception when using builtin gems (#2915, #2963, @gnufied)
+ - cache gems that are built in to the running ruby (#2975, @indirect)
+ - re-allow deploying cached git gems without git installed (#2968, @aughr)
+ - keep standalone working even with builtin gems (@indirect)
+ - don't update vendor/cache in deployment mode (#2921, @indirect)
+
+Features:
+
+ - warn informatively when `bundle install` is run as root (#2936, @1337807)
+
## 1.6.1 (2014-04-02)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index a3c1f909d8..66aa1f418f 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.1" unless defined?(::Bundler::VERSION)
+ VERSION = "1.6.2" unless defined?(::Bundler::VERSION)
end