summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2011-09-29 22:40:28 -0700
committerAndre Arko <andre@arko.net>2011-09-29 22:40:28 -0700
commit6072ff563322d7887d8640335f10491c84e05c14 (patch)
tree42f825a78a06bc976d471c6cf62013cdefe594a7
parent517ae01e20789288a9b6db98042692946ce90cee (diff)
downloadbundler-6072ff563322d7887d8640335f10491c84e05c14.tar.gz
Version 1.0.21.rcv1.0.21.rc
-rw-r--r--CHANGELOG.md8
-rw-r--r--lib/bundler/version.rb2
2 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 07d62aed55..8f48b781a1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## 1.0.21.rc (September 29, 2011)
+
+Bugfixes:
+
+ - Load Psych unless Syck is defined, because 1.9.2 defines YAML
+
## 1.0.20 (September 27, 2011)
Features:
@@ -6,7 +12,7 @@ Features:
Bugfixes:
- - Ensure yaml is required even if psych is found
+ - Ensure YAML is required even if Psych is found
- Handle directory names that contain invalid regex characters
## 1.0.20.rc (September 18, 2011)
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index d88c33782a..1b54227a02 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.20" unless defined?(::Bundler::VERSION)
+ VERSION = "1.0.21.rc" unless defined?(::Bundler::VERSION)
end