From 941d89cf5fc63ee050266c0e4e89c39185d31575 Mon Sep 17 00:00:00 2001 From: James Tanner Date: Mon, 7 Apr 2014 22:57:49 -0400 Subject: [PATCH] Fix version_added for a few parameters in django_manage --- web_infrastructure/django_manage | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web_infrastructure/django_manage b/web_infrastructure/django_manage index 509bd404493..42ce3781fda 100644 --- a/web_infrastructure/django_manage +++ b/web_infrastructure/django_manage @@ -74,14 +74,17 @@ options: description: - Will skip over out-of-order missing migrations, you can only use this parameter with I(migrate) required: false + version_added: "1.3" merge: description: - Will run out-of-order or missing migrations as they are not rollback migrations, you can only use this parameter with 'migrate' command required: false + version_added: "1.3" link: description: - Will create links to the files instead of copying them, you can only use this parameter with 'collectstatic' command required: false + version_added: "1.3" notes: - I(virtualenv) (U(http://www.virtualenv.org)) must be installed on the remote host if the virtualenv parameter is specified. - This module will create a virtualenv if the virtualenv parameter is specified and a virtualenv does not already exist at the given location.