summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2013-08-04 17:13:43 -0700
committerAndre Arko <andre@arko.net>2013-08-04 17:14:02 -0700
commit438b829c6dfef1863ca49149221ff0f856f451f2 (patch)
treee54369db8770d5e8d9c1ebf66ec8472f4dfe9418
parent558f4603300df7f23006f000d5b3749fa0029039 (diff)
downloadbundler-438b829c6dfef1863ca49149221ff0f856f451f2.tar.gz
Version 1.4.0.pre.1 with changelogv1.4.0.pre.1
-rw-r--r--CHANGELOG.md19
-rw-r--r--lib/bundler/version.rb2
2 files changed, 16 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e76b1008c2..b3bc5d3152 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,17 +1,28 @@
-## 1.4.0
+## 1.4.0.pre.1 (2013-08-04)
Features:
+ - retry network requests while installing gems (#2561, @ascherger)
+ - faster installs using gemspecs from the local system cache (#2497, @mipearson)
+ - add `bundle install -jN` for N parallel gem installations (#2481, @eagletmt)
- add `ENV['DEBUG_RESOLVER_TREE']` outputs resolver tree (@dblock)
- set $MANPATH so `bundle exec man name` works (#1624, @sunaku)
+ - use `man` instead of `groff` (#2579, @ixti, @simi)
- add Gemfile dependency info to bundle outdated output (#2487, @rahearn)
- - faster installs using gemspecs from the local system cache (#2497, @mipearson)
- - add `bundle install -jN` for N parallel gem installations (#2481, @eagletmt)
- allow `require: true` as an alias for `require: <name>` (#2538, @ndbroadbent)
+ - rescue and report Thor errors (#2478, @pjvds)
+ - detect cyclic dependencies (#2564, @gnufied)
+ - support multiple gems in `binstubs` (#2576, @lucasmazza)
+ - use https instead of git for :github gems (#2569, @fuadsaud)
+ - add quiet option to `bundle package` (#2573, @shtirlic)
+ - use RUBYLIB instead of RUBYOPT for better Windows support (#2536, @equinux)
Bugfixes:
- - reduce stack size while resolving, helping JRuby overflow less (#2510, @headius)
+ - reduce stack size while resolving to fix JRuby overflow (#2510, @headius)
+ - display GitErrors while loading specs in --verbose mode (#2461)
+ - allow the same options hash to be passed to multiple gems (#2447)
+ - handle missing binaries without an exception (#2019, @luismreis)
## 1.3.6
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 2e571e44d5..ddbb667c4c 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.4.0.pre.1" unless defined?(::Bundler::VERSION)
end