From 09108847e519f693623832125fa959d44c505455 Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Thu, 17 Nov 2016 18:41:06 -0800 Subject: [PATCH 1/2] Put conda-smithy version in first feedstock commit --- conda_smithy/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda_smithy/cli.py b/conda_smithy/cli.py index 933987532..a93806080 100755 --- a/conda_smithy/cli.py +++ b/conda_smithy/cli.py @@ -110,7 +110,7 @@ def __call__(self, args): meta = None feedstock_directory = args.feedstock_directory.format(package=argparse.Namespace(name=meta.name())) - msg = 'Initial commit of the {} feedstock.'.format(meta.name()) + msg = 'Initial commit of the {} feedstock rendered with conda-smithy {}'.format(meta.name(), __version__) try: generate_feedstock_content(feedstock_directory, args.recipe_directory, meta) From 58403611eeff1aec28dd458f201908967347f2ae Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Thu, 17 Nov 2016 22:08:01 -0800 Subject: [PATCH 2/2] Update cli.py --- conda_smithy/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda_smithy/cli.py b/conda_smithy/cli.py index a93806080..682e17ee1 100755 --- a/conda_smithy/cli.py +++ b/conda_smithy/cli.py @@ -110,7 +110,7 @@ def __call__(self, args): meta = None feedstock_directory = args.feedstock_directory.format(package=argparse.Namespace(name=meta.name())) - msg = 'Initial commit of the {} feedstock rendered with conda-smithy {}'.format(meta.name(), __version__) + msg = 'Initial feedstock commit with conda-smithy {}.'.format(__version__) try: generate_feedstock_content(feedstock_directory, args.recipe_directory, meta)