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 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