summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md8
-rw-r--r--lib/bundler/version.rb2
2 files changed, 9 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bc42a6406b..5e225a4e9a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+## 1.7.7 (2014-11-19)
+
+Bugfixes:
+
+ - Ensure server credentials stored in config or ENV will be used (#3180, @arronmabrey)
+ - Fix race condition causing errors while installing git-based gems (#3174, @Who828)
+ - Use single quotes in config so YAML won't add more quotes (#3261, @indirect)
+
## 1.7.6 (2014-11-11)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 1063456c72..ffd5d85492 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.7.6" unless defined?(::Bundler::VERSION)
+ VERSION = "1.7.7" unless defined?(::Bundler::VERSION)
end