summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-05-06 16:54:11 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-05-06 16:54:11 -0500
commita2326af81bba06a0cbc079ba9b33491a285945bc (patch)
treed8e50810b5ee9af1dd66efa2a24ea4824507d883
parent7d37fc9276cb9c8f10c8f21c7419d836fd185ea4 (diff)
downloadbundler-1.12.3.tar.gz
Version 1.12.3 with changelogv1.12.3
-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 0061bc2205..7e3899255a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## 1.12.3 (2016-05-06)
+
+Bugfixes:
+ - fix uncoditionally writing `.bundle/config` when running `bundle install` (@segiddins)
+ - fall back to the dependency API and the full index when the home directory is not writable (@segiddins)
+
## 1.12.2 (2016-05-04)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 2d6ecff5d9..2285360c44 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.2" unless defined?(::Bundler::VERSION)
+ VERSION = "1.12.3" unless defined?(::Bundler::VERSION)
end