summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2016-10-11 01:01:07 -0700
committerAndre Arko <andre@arko.net>2016-10-11 01:01:07 -0700
commit3aaa3e36990ca223e0de2e55f7d0da905e407521 (patch)
treea01738a5b18f146b681c191a19e671f9a718d3f6
parent8019bce7820904689b1812adf9d7aa60bb0929db (diff)
downloadbundler-3aaa3e36990ca223e0de2e55f7d0da905e407521.tar.gz
Version 1.13.4 with changelog
-rw-r--r--CHANGELOG.md9
-rw-r--r--lib/bundler/version.rb2
2 files changed, 10 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e3c138be22..7afabe0967 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,12 @@
+## 1.13.4 (2016-10-11)
+
+Bugfixes:
+
+ - stop printing warning when compact index versions file is rewritten (#5064, @indirect)
+ - fix `parent directory is world writable but not sticky` error on install (#5043, @indirect)
+ - fix for `uninitialized constant Bundler::Plugin::API::Source` error (#5010, @hsbt, @aycabta)
+ - make `update` options for major, minor, and patch updates consistent (#5043, @chrismo)
+
## 1.13.3 (2016-10-10)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 159148372e..823045b3f8 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.13.3" unless defined?(::Bundler::VERSION)
+ VERSION = "1.13.4" unless defined?(::Bundler::VERSION)
end