summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-04-12 15:53:41 -0700
committerAndre Arko <andre@arko.net>2015-04-12 15:53:41 -0700
commit10d94dcee83ae2c82cd39152c29cb4477f42c5c0 (patch)
treea4b443faf4f447d7bab6d94e1bb891aada6dd414
parent5749adedea810a94dc5c156f0f36247c572ea368 (diff)
downloadbundler-1.9.3.tar.gz
Version 1.9.3 with changelogv1.9.3
-rw-r--r--CHANGELOG.md9
-rw-r--r--lib/bundler/version.rb2
2 files changed, 10 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2a74b43548..ff68446433 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,12 @@
+## 1.9.3 (2015-04-12)
+
+Bugfixes:
+
+ - handle removal of `specs` from rubygems/rubygems@620910 (#3558, @indirect)
+ - install 'universal' gems on Windows (#3066, @jdmundrawala)
+ - stop passing --local during `rake install` task (#3236, @indirect)
+ - guard against all possible accidental public gem pushes (#3533, @indirect)
+
## 1.9.2 (2015-03-30)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 0a087b155b..56266fd552 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.2" unless defined?(::Bundler::VERSION)
+ VERSION = "1.9.3" unless defined?(::Bundler::VERSION)
end