summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-03-13 12:30:08 -0700
committerAndre Arko <andre@arko.net>2015-03-13 12:30:08 -0700
commit91b92fc5b046abf93a4aa7e2a9c688d9d028f883 (patch)
tree9ff9e4ad57bcb189118b8ae631a71c8b305e798b
parentb41357489b63cfbc1b957e575e495e1383d5c9cb (diff)
downloadbundler-91b92fc5b046abf93a4aa7e2a9c688d9d028f883.tar.gz
Version 1.9.0.rc with changelogv1.9.0.rc
-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 f141418211..045da86610 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## 1.9.0.rc
+
+Bugfixes:
+
+ - make Bundler.which stop finding directories (@nohoho)
+ - handle Bundler prereleases correctly (#3470, @segiddins)
+
## 1.9.0.pre.1 (2015-03-11)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 778bdaf2b3..6d53a18d95 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.9.0.pre.1" unless defined?(::Bundler::VERSION)
+ VERSION = "1.9.0.rc" unless defined?(::Bundler::VERSION)
end