From 62a509a2a9dcbb5a4ba37e644359046c93890c18 Mon Sep 17 00:00:00 2001 From: William DURAND Date: Tue, 19 Nov 2013 09:37:54 +0100 Subject: [PATCH] Prepare 2.4.1 release --- CHANGELOG.md | 3 ++- bin/capifony | 2 +- capifony.gemspec | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ccee14e..2fd64a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ -### 2.4.1 / ??? +### 2.4.1 / November 19, 2013 +* Fixed: Set facl permissions only once * Fixed: error incompatible character encodings: UTF-8 and ASCII-8BIT * Added: use SYMFONY_ENV for composer update call diff --git a/bin/capifony b/bin/capifony index 31d1e81..5ebb4fe 100755 --- a/bin/capifony +++ b/bin/capifony @@ -5,7 +5,7 @@ require 'fileutils' symfony_version = nil symfony_app_path = 'app' -capifony_version = '2.4.1.dev' +capifony_version = '2.4.1' OptionParser.new do |opts| opts.banner = "Usage: #{File.basename($0)} [path]" diff --git a/capifony.gemspec b/capifony.gemspec index 2167ba3..ff51ad5 100644 --- a/capifony.gemspec +++ b/capifony.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |spec| spec.name = 'capifony' - spec.version = '2.4.1.dev' + spec.version = '2.4.1' 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.