From a444eb4e645e7c158c6a613c5bc04184c71a0ba3 Mon Sep 17 00:00:00 2001 From: William DURAND Date: Tue, 7 Oct 2014 14:15:53 +0200 Subject: [PATCH] Prepare 2.8.2 release --- CHANGELOG.md | 6 ++++-- bin/capifony | 2 +- capifony.gemspec | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64e8019..fe71060 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ -### 2.8.2 / ??? +### 2.8.2 / October 7, 2014 -n/a +* Fixed: set default `:use_composer` to true +* Fixed: Inifile 3.0.0 gem is incompatible with Capifony. Use Inifile version >= + 2.0.2 and < 3.0.0. fixes #523 ### 2.8.1 / August 14, 2014 diff --git a/bin/capifony b/bin/capifony index 0ed4a84..b42c421 100755 --- a/bin/capifony +++ b/bin/capifony @@ -5,7 +5,7 @@ require 'fileutils' symfony_version = nil symfony_app_path = 'app' -capifony_version = '2.8.2.dev' +capifony_version = '2.8.2' OptionParser.new do |opts| opts.banner = "Usage: #{File.basename($0)} [path]" diff --git a/capifony.gemspec b/capifony.gemspec index 1d46582..1327b87 100644 --- a/capifony.gemspec +++ b/capifony.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |spec| spec.name = 'capifony' - spec.version = '2.8.2.dev' + spec.version = '2.8.2' 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.