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 51f1e631b8..5a2c8a42d5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## 1.10.2 (2015-05-29)
+
+Bugfixes:
+
+ - fix regression in `bundle update GEM` performance introduced in 1.10.0 (#3687, @segiddins)
+
## 1.10.1 (2015-05-28)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 93bbf5b73b..66a089092a 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.10.1" unless defined?(::Bundler::VERSION)
+ VERSION = "1.10.2" unless defined?(::Bundler::VERSION)
end