diff options
author | Andre Arko <andre@arko.net> | 2010-08-03 21:30:20 -0700 |
---|---|---|
committer | Andre Arko <andre@arko.net> | 2010-08-03 21:30:20 -0700 |
commit | 530b511620013dd05fdd2b301f91071283c2db3d (patch) | |
tree | 26eecfeb70866516b644210918adb270f2d0ee69 | |
parent | 7dd31f0b90fd756df9ef707ddea26db1250356b1 (diff) | |
download | bundler-ea7d5b9a537a7b146c48f444c65f270a3349069a.tar.gz |
Version 1.0.0.rc.31.0.0.rc.3
-rw-r--r-- | CHANGELOG.md | 18 | ||||
-rw-r--r-- | lib/bundler/version.rb | 2 |
2 files changed, 19 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 562272de5b..3a935fef6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## 1.0.0.rc.2 (August 3, 2010) + +Features: + + - Deprecate --production flag for --deployment, since the former + was causing confusion with the :production group + - Add --gemfile option to `bundle check` + - Reduce memory usage of `bundle install` by 2-4x + - Improve message from `bundle check` under various conditions + - Better error when a changed Gemfile conflicts with Gemfile.lock + +Bugfixes: + + - Create bin/ directory if it is missing, then install binstubs + - Error nicely on the edge case of a pinned gem with no spec + - Do not require gems for other platforms + - Update git sources along with the gems they contain + ## 1.0.0.rc.2 (July 29, 2010) - `bundle install path` was causing confusion, so we now print diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb index 7c45260626..f04d51903e 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.0.0.rc.2" unless defined?(::Bundler::VERSION) + VERSION = "1.0.0.rc.3" unless defined?(::Bundler::VERSION) end |