Browse Source

application v0.99.14

jtimberman 12 years ago
parent
commit
82ae63bbbb
2 changed files with 8 additions and 2 deletions
  1. 4 0
      CHANGELOG.md
  2. 4 2
      metadata.rb

+ 4 - 0
CHANGELOG.md

@@ -1,3 +1,7 @@
+## v0.99.14:
+
+* [COOK-1065] - use pip in virtualenv during deploy
+
 ## v0.99.12:
 
 * [COOK-606] application cookbook deployment recipes should use ipaddress instead of fqdn

+ 4 - 2
metadata.rb

@@ -3,7 +3,7 @@ maintainer_email "cookbooks@opscode.com"
 license          "Apache 2.0"
 description      "Deploys and configures a variety of applications defined from databag 'apps'"
 long_description  IO.read(File.join(File.dirname(__FILE__), 'README.md'))
-version          "0.99.12"
+version          "0.99.14"
 recipe           "application", "Loads application databags and selects recipes to use"
 recipe           "application::django", "Deploys a Django application specified in a data bag with the deploy_revision resource"
 recipe           "application::gunicorn", "Sets up the deployed Django application with Gunicorn as the web server"
@@ -15,6 +15,8 @@ recipe           "application::rails", "Deploys a Rails application specified in
 recipe           "application::tomcat", "Sets up the deployed Java application with Tomcat as the servlet container"
 recipe           "application::unicorn", "Sets up the deployed Rails application with Unicorn as the web server"
 
-%w{ runit unicorn apache2 passenger_apache2 tomcat python gunicorn apache2 php }.each do |cb|
+%w{ runit unicorn apache2 passenger_apache2 tomcat gunicorn apache2 php }.each do |cb|
   depends cb
 end
+
+depends "python", ">= 1.0.6"