summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2013-09-29 23:34:06 -0700
committerAndre Arko <andre@arko.net>2013-09-29 23:34:06 -0700
commitcbda098d6d718f80bbcbe7fc367fbc1578be6d11 (patch)
treeb2b7c9777db622f54e24fd59592be4b4b805f9d7
parent9a1f7d156d8744cf8de56dcdcc7012638c881437 (diff)
downloadbundler-cbda098d6d718f80bbcbe7fc367fbc1578be6d11.tar.gz
Version 1.4.0.rc.1 with changelogv1.4.0.rc.1
-rw-r--r--CHANGELOG.md13
-rw-r--r--lib/bundler/version.rb2
2 files changed, 12 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 33123378f2..e773fec7ad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-## 1.4.0.pre.2
+## 1.4.0.rc.1 (2013-09-29)
Features:
@@ -6,12 +6,21 @@ Features:
- add :patchlevel option to ruby DSL
- add `bundler` bin (#2598, @kirs)
- friendly ambiguous error messages (#2581, #2550, @jlsuttles, @jendiamond, @joyicecloud)
+ - add `:jruby_18` and `:jruby_19` paltform options (@mcfiredrill)
+ - add X.509 client certificates for auth without passwords (@snackbandit)
+ - add `exec --keep-file-descriptors` for Ruby 1.9-like behavior on 2.0 (@steved555)
+ - print a better error when git is not installed (@joyicecloud)
+ - exit non-zero when `outdated` is run with an unknown gem (@joyicecloud)
+ - add `:ruby_21` platform option (@brandonblack)
+ - add `--retry` to retry failed network and git commands (@schneems)
+ - include command and versions in User-Agent (@indirect, @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
+ - revert #2569, staying compatible with git: instead of https: for :github gems
+ - handle exceptions while installing gems in parallel (@gnufied)
## 1.4.0.pre.1 (2013-08-04)
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 0ec16e6bdd..5da431947b 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.2" unless defined?(::Bundler::VERSION)
+ VERSION = "1.4.0.rc.1" unless defined?(::Bundler::VERSION)
end