summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2014-01-10 16:06:06 -0800
committerAndre Arko <andre@arko.net>2014-01-10 16:28:45 -0800
commitf06ff3639aac23840d5685f6459c798dc15b1448 (patch)
tree54b6c48074bba8773a0ef256ecf2443edf48edde
parentfe8251948d84e29c54d85e0e45d2e448d11faa58 (diff)
downloadbundler-1.5.2.tar.gz
Version 1.5.2 with changelogv1.5.2
-rw-r--r--CHANGELOG.md13
-rw-r--r--lib/bundler/version.rb2
2 files changed, 13 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0b0b9d4cc5..318d794e06 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,14 @@
+## 1.5.2 (2014-01-10)
+
+Bugfixes:
+
+ - fix integration with Rubygems 1.8.0-1.8.19
+ - handle ENETDOWN exception during network requests
+ - gracefully shut down after interrupt during parallel install (@Who828)
+ - allow Rails to run Thor without debug mode (@rafaelfranca)
+ - set git binstub permissions by umask (@v-yarotsky)
+ - remove parallel install debug log
+
## 1.5.1 (2013-12-28)
Bugfixes:
@@ -96,7 +107,7 @@ Bugfixes:
- allow the same options hash to be passed to multiple gems (#2447)
- handle missing binaries without an exception (#2019, @luismreis)
-## 1.3.6
+## 1.3.6 (8 January 2014)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 3fa04a8a22..8db1d63b32 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.5.1" unless defined?(::Bundler::VERSION)
+ VERSION = "1.5.2" unless defined?(::Bundler::VERSION)
end