summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2010-11-17 18:11:58 -0800
committerAndre Arko <andre@arko.net>2010-11-17 18:11:58 -0800
commit8dc821fc9577fdb4602bc417f49066bae532ced4 (patch)
tree1baca7e789dbc5a7aef3bcccfb69f986ea8b7df8
parent3e1e26c3eaf6ce4a702644175bab34874736f9cb (diff)
downloadbundler-8dc821fc9577fdb4602bc417f49066bae532ced4.tar.gz
Version 1.0.7 with changelogv1.0.7
-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