summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md7
-rw-r--r--lib/bundler/version.rb2
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c565763650..19ea421e2e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## 1.0.7 (November 17, 2010)
+
+Bugfixes:
+
+ - Remove Bundler version from the lockfile because it broke
+ backwards compatibility with 1.0.0-1.0.5. Sorry. :(
+
## 1.0.6 (November 16, 2010)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 411cc9aba4..069ac68978 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.6" unless defined?(::Bundler::VERSION)
+ VERSION = "1.0.7" unless defined?(::Bundler::VERSION)
end