summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2013-04-03 23:20:45 -0700
committerAndre Arko <andre@arko.net>2013-04-03 23:20:45 -0700
commit2c15e85965e6af737c186fb865633bb4c24526b0 (patch)
tree18ef91992d24f15e3e6307091e5abc7fc18427c7
parentd047cb276f6dd7bb7c8b11970dc756df5f6097cf (diff)
downloadbundler-1.3.5.tar.gz
Version 1.3.5 with changelogv1.3.5
-rw-r--r--CHANGELOG.md12
-rw-r--r--lib/bundler/version.rb2
2 files changed, 10 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 97a699ae26..a6be0940e1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,14 +1,21 @@
-## 1.3.5
+## 1.3.5 (3 April 2013)
+
+Features:
+
+ - progress indicator while resolver is running (@chief)
Bugfixes:
- update local overrides with orphaned revisions (@jamesferguson)
+ - revert to working quoting of RUBYOPT on Windows (@ogra)
+ - use basic auth even when SSL is not available (@jayniz)
+ - installing git gems without dependencies in deployment now works
## 1.3.4 (15 March 2103)
Bugfixes:
- - load YAML on Rubygems version that define module YAML
+ - load YAML on Rubygems versions that define module YAML
- fix regression that broke --without on ruby 1.8.7
## 1.3.3 (13 March 2013)
@@ -22,7 +29,6 @@ Features:
Bugfixes:
- require rbconfig for standalone mode
- - revert to working quoting of RUBYOPT on Windows (@ogra)
## 1.3.2 (7 March 2013)
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 7ff03208e0..2e571e44d5 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.4" unless defined?(::Bundler::VERSION)
+ VERSION = "1.3.5" unless defined?(::Bundler::VERSION)
end