diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f0f366..96481fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ -### 2.7.1 / ??? - -n/a +### 2.8.0 / August 1, 2014 + +* Added: alternative way on Linux/Ubuntu to deploy using chmod option: access + recursively all users write permissions to following directory. +* Added: rename database move commands to copy +* Added: check for possible already existing acl on directory +* Added: make `symfony:composer:install` run in interactive mode, to allow + `parameters.(ini|yml)` configuration using + `incenteev/composer-parameter-handle` ### 2.7.0 / May 16, 2014 diff --git a/bin/capifony b/bin/capifony index 76833a0..cf9fbdf 100755 --- a/bin/capifony +++ b/bin/capifony @@ -5,7 +5,7 @@ require 'fileutils' symfony_version = nil symfony_app_path = 'app' -capifony_version = '2.7.1.dev' +capifony_version = '2.8.0' OptionParser.new do |opts| opts.banner = "Usage: #{File.basename($0)} [path]" diff --git a/capifony.gemspec b/capifony.gemspec index 958f647..a62b14a 100644 --- a/capifony.gemspec +++ b/capifony.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |spec| spec.name = 'capifony' - spec.version = '2.7.1.dev' + spec.version = '2.8.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.