summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2014-01-09 02:51:21 -0800
committerAndre Arko <andre@arko.net>2014-01-09 02:51:21 -0800
commitf00bef6a7d85486b314de1e49e6484a2394ec8f5 (patch)
tree08d2780dfe8dbd8d037a874fe57ef13754c6108a
parent6941f66467511ed32ac5c668317a8c00d097d040 (diff)
downloadbundler-f00bef6a7d85486b314de1e49e6484a2394ec8f5.tar.gz
Version 1.3.6 with changelogv1.3.6
-rw-r--r--CHANGELOG.md13
-rw-r--r--lib/bundler/version.rb2
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d8e1e05a96..dcee8ae575 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,19 @@ Bugfixes:
- make gemspec path option preserve relative paths in lock file (@bwillis)
- use umask when creating binstubs (#1618, @v-yarotsky)
+ - warn if graphviz is not installed (#2435, @Agis-)
+ - show git errors while loading gemspecs
+ - don't mutate gem method options hash (#2447)
+ - print Thor errors (#2478, @pjvds)
+ - print Rubygems system exit errors (James Cook)
+ - more Pathnames into Strings for MacRuby (@kml)
+ - preserve original gemspec path (@bwillis)
+ - remove warning about deps with :git (#1651, @ixti)
+ - split git files on null (#2634, @jasonmp85)
+ - handle cross-host redirects without SSL (#2686, @grddev)
+ - handle Rubygems 2 security exception (@zzak)
+ - reinstall gems if they are missing with spec present
+ - set binstub permissions using umask (#1618, @v-yarotsky)
## 1.3.5 (3 April 2013)
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 2e571e44d5..6f5681545f 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.3.5" unless defined?(::Bundler::VERSION)
+ VERSION = "1.3.6" unless defined?(::Bundler::VERSION)
end