diff options
-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 8532bba3d3..0d9a87f225 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## 1.1.pre.5 (June 11, 2011) + +Bugfixes: + + - Fix LazySpecification on Ruby 1.9 (@dpiddy, #1232) + - Fix HTTP proxy support (@leobessa, #878) + +Features: + + - Speed up `install --deployment` by using the API endpoint + - Support Basic HTTP Auth for the API endpoint (@dpiddy, #1229) + - Add `install --full-index` to disable the API endpoint, just in case + - Significantly speed up install by removing unneeded gemspec fetches + - `outdated` command shows outdated gems (@joelmoss, #1130) + - Print gem post install messages (@csquared, #1155) + - Reduce memory use by removing Specification.new inside method_missing (@tenderlove, #1222) + - Allow `check --path` + ## 1.1.pre.4 (May 5, 2011) Bugfixes: diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb index fbbd744218..dabbf101e9 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.1.pre.4" unless defined?(::Bundler::VERSION) + VERSION = "1.1.pre.5" unless defined?(::Bundler::VERSION) end |