summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2014-02-07 08:17:23 +0200
committerAndre Arko <andre@arko.net>2014-02-07 10:32:27 +0200
commit662e11c6e41286d4b608de645894a9c9c93cbd9b (patch)
treed54c812f5aa3c34b25cdb733a9a077bab16ba101
parent81bf1d3f91689f4b376cc5d424646d5d0e4206c1 (diff)
downloadbundler-1.6.0.pre.2.tar.gz
Version 1.6.0.pre.2 with changelogv1.6.0.pre.2
-rw-r--r--CHANGELOG.md11
-rw-r--r--lib/bundler/version.rb2
2 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 048de64d08..67417787c8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,16 +3,21 @@
Bugfixes:
- many Gemfiles that caused incorrect errors now resolve correctly (@Who828)
+ - redirects across hosts now work on rubies without OpenSSL (#2686, @grddev)
+ - gemspecs now handle filenames with newlines (#2634, @jasonmp85)
+ - support escaped characters in usernames and passwords (@punkie)
+ - no more exception on `update GEM` without lock file (@simi)
Features:
- - add `git_source` for custom options like :github and :gist (@strzalek)
- resolver rewritten to avoid recursion (@Who828)
+ - add `git_source` for custom options like :github and :gist (@strzalek)
+ - HTTP auth may now be stored in `bundle config` (@smashwilson)
- some complex Gemfiles are resolved up to 10x faster (@Who828)
- add support for IRB alternatives such as Pry and Ripl (@joallard, @postmodern)
- highlight installed or updated gems (#2722, #2741, @yaotti, @simi)
- - display post_install_message's for gems installed via :git (@phallstrom)
- - `bundle outdated --strict` only reports dependencies that can be updated (@davidblondeau)
+ - display the `post_install_message` for gems installed via :git (@phallstrom)
+ - `bundle outdated --strict` now only reports allowed updates (@davidblondeau)
## 1.5.3 (2014-02-06)
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 05eb3ba2ff..433f355458 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.0.pre.1" unless defined?(::Bundler::VERSION)
+ VERSION = "1.6.0.pre.2" unless defined?(::Bundler::VERSION)
end