summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-04-30 02:08:26 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-04-30 02:08:26 -0500
commitf935e2fe3f6ed29616fa7b206de9ccca4b90d6a0 (patch)
tree80fd38a56dfa045dc826c765919871a81fb4be42
parent3538ef1428dac9d0d4b7112eaa02318f8c39fc5f (diff)
downloadbundler-f935e2fe3f6ed29616fa7b206de9ccca4b90d6a0.tar.gz
Version 1.12.1 with changelogv1.12.1
-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 9bc64b2fad..0dd1af44c1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+## 1.12.1 (2016-04-30)
+
+Bugfixes:
+ - automatically fallback when the new index has a checksum mismatch instead of erroring (@segiddins)
+ - fix computation of new index file local checksums on Windows (#4472, @mwrock)
+ - properly handle certain resolver backtracking cases without erroring (@segiddins, #4484)
+ - ensure the `$LOAD_PATH` contains specs' load paths in the correct order (@segiddins, #4482)
+
## 1.12.0 (2016-04-28)
This space intentionally left blank.
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index f7103879ac..181813ae59 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.0" unless defined?(::Bundler::VERSION)
+ VERSION = "1.12.1" unless defined?(::Bundler::VERSION)
end