aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2017-01-21 14:51:45 -0600
committerSamuel Giddins <segiddins@segiddins.me>2017-01-21 14:51:45 -0600
commitbdef06e5d7f981e48ee83c3a0959f70f08493ca2 (patch)
tree0d35ffe286bebf921fa0418508781c0261555220
parent3494d01e2464b12ce47b40a8d83920ee02dc26ec (diff)
downloadbundler-bdef06e5d7f981e48ee83c3a0959f70f08493ca2.tar.gz
Version 1.14.1 with changelog
-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 091979f5..eb7d0785 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## 1.14.1 (2017-01-21)
+
+Bugfixes:
+
+ - work around a ruby 2.2.2 bug that caused a stack consistency error during installation (#5342, @segiddins)
+
## 1.14.0 (2017-01-20)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index a55df769..ebd878e0 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.14.0" unless defined?(::Bundler::VERSION)
+ VERSION = "1.14.1" unless defined?(::Bundler::VERSION)
end