From 017b108aed0f576c3b2a8436748200ca65fa3015 Mon Sep 17 00:00:00 2001 From: Roy Liu Date: Tue, 21 Aug 2012 01:54:18 -0400 Subject: [PATCH] Bump Capistrano::Version to 2.13.1 and update the CHANGELOG --- CHANGELOG | 19 +++++++++++++++++++ lib/capistrano/version.rb | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 150436e3..f5a3d1e5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,22 @@ +## 2.13.1 / August 21 2012 + +This release contains multiple bugfixes and handling of exotic situations. The +`Configuration#capture` method should now work in spite of `ActiveSupport` +shenanigans. Thank you, the community, for all of your contributions: + + * Close input streams when sending commands that don't read input. Dylan Smith + (dylanahsmith) + * Listen for method definition on `Kernel` and undefine on `Namespace`. Chris + Griego (cgriego) + * Fixed shell `Thread.abort_on_exception` bug. George Malamidis (nutrun) + * Adding a log method to `Capistrano::Deploy::SCM::None` to maintain + consistency with other SCM classes. Kevin Lawver (kplawver) + * Add deprecation warning if someone uses old `deploy:symlink` syntax on + callbacks. Ken Mazaika (kenmazaika) + * Simplify the `finalize_update` code by respecting the `:shared_children` + variable during removal and recreation of the parent. John Knight + (knightlabs) + ## 2.12.0 / April 13 2012 This release reverts the very verbose logging introduced in the previous version, it also diff --git a/lib/capistrano/version.rb b/lib/capistrano/version.rb index b45e8108..5d949878 100644 --- a/lib/capistrano/version.rb +++ b/lib/capistrano/version.rb @@ -2,7 +2,7 @@ module Capistrano class Version MAJOR = 2 MINOR = 13 - PATCH = 0 + PATCH = 1 def self.to_s "#{MAJOR}.#{MINOR}.#{PATCH}"