summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md10
-rw-r--r--lib/bundler/version.rb2
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d0c19f9f14..56e79a0800 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+## 1.9.2 (2015-03-30)
+
+Bugfixes:
+
+ - ensure gem executables are executable (#3517, #3511, @indirect)
+ - fix warnings in Molinillo (#3516, @segiddins)
+ - ensure duplicate dependencies do not propagate (#3522, @segiddins)
+ - keep gems locked when updating another gem from the same source (#3250, @indirect)
+ - resolve race that could build gems without saved arguments (#3404, @indirect)
+
## 1.9.1 (2015-03-21)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 1854799dcb..0a087b155b 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.1" unless defined?(::Bundler::VERSION)
+ VERSION = "1.9.2" unless defined?(::Bundler::VERSION)
end