summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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