summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerence Lee <terence@heroku.com>2011-06-11 15:59:32 -0500
committerTerence Lee <terence@heroku.com>2011-06-11 21:19:30 -0500
commitc2dbfc9e967b7e52ae92ec9c37cde29e26f59ef2 (patch)
tree92cd7933b933791f26af3a3cb72628c2962a16df
parent20dc4b50c6880221d480c1b59d7969ef5af0f134 (diff)
downloadbundler-1.1.pre.5.tar.gz
Version 1.1.pre.5v1.1.pre.5
-rw-r--r--CHANGELOG.md18
-rw-r--r--lib/bundler/version.rb2
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