summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2014-07-17 22:42:33 -0700
committerAndre Arko <andre@arko.net>2014-07-17 22:42:33 -0700
commit7fce490d0b1b1ea92c1a94cfac55c88dc678a485 (patch)
tree1b4315da06af9b482738e5581e0496b6c190113d
parent8ccd921b37fa0f2d62ab0c12a2245299e9b43518 (diff)
downloadbundler-7fce490d0b1b1ea92c1a94cfac55c88dc678a485.tar.gz
Version 1.6.4 with changelogv1.6.4
-rw-r--r--CHANGELOG.md7
-rw-r--r--lib/bundler/version.rb2
2 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 89f32c86e9..bfedb0e3ff 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,14 @@
-## 1.6.4
+## 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)
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 398a66291b..fc8e643dc8 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