summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2011-04-01 12:14:05 -0700
committerAndre Arko <andre@arko.net>2011-04-01 12:14:05 -0700
commitec1d4dd02eecb47e1fb18fea33f050102fa05ca5 (patch)
tree7e67070d00a89b94a65ab8b13af6be3a102f3118
parent7008382d7de4463096784a2a1e667ac930366d94 (diff)
downloadbundler-1.0.11.tar.gz
Version 1.0.11v1.0.11
-rw-r--r--CHANGELOG.md14
-rw-r--r--lib/bundler/version.rb2
2 files changed, 15 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index efc7be298a..6e4ef85355 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,17 @@
+## 1.0.11 (April 1, 2011)
+
+Features:
+
+ - Compatibility with Rubygems 1.6 and 1.7
+ - Better error messages when a git command fails
+
+Bugfixes:
+
+ - Don't always update gemspec gems (@carllerche)
+ - Remove ivar warnings (@jackdempsey)
+ - Fix occasional git failures in zsh (@jonah-carbonfive)
+ - Consistent lock for gems with double deps like Cap (@akahn)
+
## 1.0.10 (February 1, 2011)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index f3cfc0fd9e..87e5f63b57 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.10" unless defined?(::Bundler::VERSION)
+ VERSION = "1.0.11" unless defined?(::Bundler::VERSION)
end