summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerence Lee <hone02@gmail.com>2013-08-26 23:46:03 -0400
committerTerence Lee <hone02@gmail.com>2013-08-27 18:00:14 -0400
commita83513a20fb2e1377335f9553bf9726bd23a34ba (patch)
tree06de35e5eea2a7828a15c87545ed28a62c2f282b
parente75f1c7d995a2dec01b8998a02b2cc871ad1778f (diff)
downloadbundler-1.4.0.pre.2.tar.gz
Version 1.4.0.pre.2 changelogv1.4.0.pre.2
-rw-r--r--CHANGELOG.md9
-rw-r--r--lib/bundler/version.rb2
2 files changed, 10 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4254011cde..33123378f2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,15 @@
Features:
- add support for the x64-mingw32 platform (#2356, #2590, @larskanis)
+ - add :patchlevel option to ruby DSL
+ - add `bundler` bin (#2598, @kirs)
+ - friendly ambiguous error messages (#2581, #2550, @jlsuttles, @jendiamond, @joyicecloud)
+
+Bugfixes:
+
+ - allow passwordless Basic Auth (#2606, @rykov)
+ - don't suggest `gem install foo` when `foo` is a git gem that fails (@kirs)
+ - revert #2569, going back to git instead of https for :github gems
## 1.4.0.pre.1 (2013-08-04)
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index ddbb667c4c..0ec16e6bdd 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.4.0.pre.1" unless defined?(::Bundler::VERSION)
+ VERSION = "1.4.0.pre.2" unless defined?(::Bundler::VERSION)
end