summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-05-16 15:31:19 -0700
committerAndre Arko <andre@arko.net>2015-05-18 17:56:14 -0700
commita19ebe73b6ba9436ce57956c2a1e1a92150ab018 (patch)
treee5523e8afc08665dedfff49f1e52b6bfb444d9c4
parent9ed9afd1c9b9bab12524d3f9044812b6759d935f (diff)
downloadbundler-a19ebe73b6ba9436ce57956c2a1e1a92150ab018.tar.gz
Version 1.10.0.rc with changelogv1.10.0.rc
-rw-r--r--CHANGELOG.md13
-rw-r--r--lib/bundler/version.rb2
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4b08c2d2e0..2dee71228e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,16 @@
+## 1.10.0.rc (2015-05-16)
+
+Features:
+
+ - dramatically speed up resolving some slow Gemfiles (#3635, @segiddins)
+ - track CI platforms running Bundler (#3646, @fotanus)
+
+Bugfixes:
+
+ - allow `viz` to work with prereleases (#3621, #3217, @aprescott)
+ - validate gemspecs used in path and git gems (#3639, @segiddins, @indirect)
+ - stop printing config warnings when config is unchanged (#3649, @fotanus, @indirect)
+
## 1.10.0.pre.2 (2015-05-07)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 22d6ef499b..d83055a683 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.0.pre.2" unless defined?(::Bundler::VERSION)
+ VERSION = "1.10.0.rc" unless defined?(::Bundler::VERSION)
end