summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-05-16 15:47:18 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-05-16 15:47:18 -0500
commitfd73d3a11f467a6a446e8c0f42c418f54a5559c2 (patch)
tree8c17efe1607fdfa45ca24398b91d093a7e8178e8
parentcacdec82b4c2b84fb616a266b6bd94161162de2e (diff)
downloadbundler-fd73d3a11f467a6a446e8c0f42c418f54a5559c2.tar.gz
Version 1.12.4 with changelogv1.12.4
-rw-r--r--CHANGELOG.md8
-rw-r--r--lib/bundler/version.rb2
2 files changed, 9 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7e3899255a..853706f643 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+## 1.12.4 (2016-05-16)
+
+Bugfixes:
+ - ensure concurrent use of the new index can't corrupt the cache (#4519, @domcleal)
+ - allow missing rubygems credentials when pushing a gem with a custom host (#4437, @Cohen-Carlisle)
+ - fix installing built-in specs with `--standalone` (#4557, @segiddins)
+ - fix `bundle show` when a gem has a prerelease version that includes a `-` (#4385, @segiddins)
+
## 1.12.3 (2016-05-06)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 2285360c44..db93547b5f 100644
--- a/lib/bundler/version.rb
+++ b/lib/bundler/version.rb
@@ -7,5 +7,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.12.3" unless defined?(::Bundler::VERSION)
+ VERSION = "1.12.4" unless defined?(::Bundler::VERSION)
end