summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md6
-rw-r--r--lib/bundler/version.rb2
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9354add8c9..2ff61c8af8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## 1.9.1 (2015-03-21)
+
+Bugfixes:
+
+ - avoid exception in 'bundler/gem_tasks' (#3492, @segiddins)
+
## 1.9.0 (2015-03-20)
## 1.9.0.rc (2015-03-13)
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 09bde8a41b..1854799dcb 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" unless defined?(::Bundler::VERSION)
+ VERSION = "1.9.1" unless defined?(::Bundler::VERSION)
end