aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 7910c97c..b19f1a44 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,18 @@ Features:
- add `bundle viz --without` to exclude gem groups from resulting graph (@fnichol)
- add support for private S3 sources (@tryba)
+## 1.6.4 (2014-07-17)
+
+Bugfixes:
+
+ - fix undefined constant error when can't find gem during binstubs (#3095, @jetaggart)
+ - work when installed git gems are not writable (#3092, @pmahoney)
+ - don't store configured source credentials in Gemfile.lock (#3045, @lhz)
+ - don't include config source credentials in the lockfile (Lars Haugseth)
+ - use threads for jobs on Rubinius (@YorickPeterse)
+ - skip dependencies from other platforms (@mvz)
+ - work when Rubygems was built without SSL (@andremedeiros)
+
## 1.6.3 (2014-06-16)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 398a6629..fc8e643d 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.3" unless defined?(::Bundler::VERSION)
+ VERSION = "1.6.4" unless defined?(::Bundler::VERSION)
end