diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cc14c1..d62ba7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ -### 2.3.0 / ??? +### 2.3.0 / July 26, 2013 -n/a +* Use `symfony_env_*` variables to tail +* Allow more Capistrano version +* Allow custom backup path +* chown deployment is recursive now ### 2.2.10 / June 9, 2013 diff --git a/bin/capifony b/bin/capifony index 9c4430e..04ed17d 100755 --- a/bin/capifony +++ b/bin/capifony @@ -5,7 +5,7 @@ require 'fileutils' symfony_version = nil symfony_app_path = 'app' -capifony_version = '2.3.0.dev' +capifony_version = '2.3.0' OptionParser.new do |opts| opts.banner = "Usage: #{File.basename($0)} [path]" diff --git a/capifony.gemspec b/capifony.gemspec index a6910bb..e3e14b2 100644 --- a/capifony.gemspec +++ b/capifony.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |spec| spec.name = 'capifony' - spec.version = '2.3.0.dev' + spec.version = '2.3.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.