From cc696e2217c8398f0fde6b44f470d2aeac9185f4 Mon Sep 17 00:00:00 2001 From: William DURAND Date: Tue, 11 Feb 2014 13:18:01 +0100 Subject: [PATCH] Prepare 2.5.0 release --- CHANGELOG.md | 12 +++++++++--- bin/capifony | 2 +- capifony.gemspec | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 488c91e..b86446f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ -### 2.4.3 / ??? - -n/a +### 2.5.0 / February 11, 2014 + +* Added: more no_release attributes to allow using custom roles +* Fixed: symfony:assets:update_version executed before composer +* Fixed: updated the specified version for the ruby-progressbar to 1.4.1 (the + latest version). +* Fixed: missing parameter "-p" for "getfacl" on CentOS +* Fixed: moved `cache warmup` task after `assetic dump` task +* Fixed: recreated composer autoload after deploy:rollback ### 2.4.2 / January 7, 2014 diff --git a/bin/capifony b/bin/capifony index 28e6618..6d0bea5 100755 --- a/bin/capifony +++ b/bin/capifony @@ -5,7 +5,7 @@ require 'fileutils' symfony_version = nil symfony_app_path = 'app' -capifony_version = '2.4.3.dev' +capifony_version = '2.5.0' OptionParser.new do |opts| opts.banner = "Usage: #{File.basename($0)} [path]" diff --git a/capifony.gemspec b/capifony.gemspec index 8f1e4da..e981d38 100644 --- a/capifony.gemspec +++ b/capifony.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |spec| spec.name = 'capifony' - spec.version = '2.4.3.dev' + spec.version = '2.5.0' spec.platform = Gem::Platform::RUBY spec.description = <<-DESC Capistrano is an open source tool for running scripts on multiple servers. It’s primary use is for easily deploying applications. While it was built specifically for deploying Rails apps, it’s pretty simple to customize it to deploy other types of applications. This package is a deployment "recipe" to work with symfony (both 1 and 2) applications.