Browse Source

application v0.99.12

* [COOK-606] application cookbook deployment recipes should use ipaddress instead of fqdn
Seth Chisamore 12 years ago
parent
commit
641c27f4f3
2 changed files with 21 additions and 8 deletions
  1. 20 7
      README.md
  2. 1 1
      metadata.rb

+ 20 - 7
README.md

@@ -14,13 +14,6 @@ This cookbook aims to provide primitives to install/deploy any kind of applicati
 
 Note that as of version 0.99.10, this cookbook uses Chef 0.10's environments instead of the `app_environment` attribute. If you do not set up any environments for your nodes, they will be in the `_default` environment. See __Usage__ below for information on how to set up environments.
 
-Changes
-=======
-
-## v0.99.10:
-
-* Use Chef 0.10's `node.chef_environment` instead of `node['app_environment']`.
-
 Requirements
 ============
 
@@ -328,6 +321,26 @@ You should also create an environment. We use `production` in the examples and t
       }
     }
 
+Changes/Roadmap
+===============
+
+## Future
+
+* [COOK-634] application cookbook should be updated to use LWRPs (vs clever recipe loading)
+
+## v0.99.12:
+
+* [COOK-606] application cookbook deployment recipes should use ipaddress instead of fqdn
+
+## v0.99.11:
+
+* make the _default chef_environment look like production rails env
+
+## v0.99.10:
+
+* Use Chef 0.10's `node.chef_environment` instead of `node['app_environment']`.
+
+
 License and Author
 ==================
 

+ 1 - 1
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.11"
+version          "0.99.12"
 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"