From 36dec2770a1b9d9a81dc789fd042b610580d7446 Mon Sep 17 00:00:00 2001 From: Karthik Subramanian Date: Sat, 20 Jun 2020 15:18:29 -0400 Subject: [PATCH] bumping up the version --- postman_doc_gen/postman_doc_gen.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/postman_doc_gen/postman_doc_gen.py b/postman_doc_gen/postman_doc_gen.py index a804844..548be5a 100644 --- a/postman_doc_gen/postman_doc_gen.py +++ b/postman_doc_gen/postman_doc_gen.py @@ -11,7 +11,7 @@ def init_arg_parse() -> argparse.ArgumentParser: ) parser.add_argument( "-v", "--version", action="version", - version=f"{parser.prog} Version 1.0.1" + version=f"{parser.prog} Version 1.0.2" ) parser.add_argument('collection', help='The Postman collection json') parser.add_argument('-e', '--env', help='The Postman environment json') diff --git a/setup.py b/setup.py index 83ba504..ec574a2 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup(name='postman_doc_gen', - version='1.0.1', + version='1.0.2', url='https://github.com/karthiks3000/postman-doc-gen.git',