diff --git a/CHANGES.txt b/CHANGES.txt index db63cc4e..50faac01 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,7 @@ +1.1.1 (2021-05-25) +------------------ +- remove useless `print` + 1.1.0 (2021-05-07) ------------------ - update pre-commit config diff --git a/python_seed/__init__.py b/python_seed/__init__.py index 5073f662..e2b3d7e4 100644 --- a/python_seed/__init__.py +++ b/python_seed/__init__.py @@ -1,3 +1,3 @@ """python_seed.""" -__version__ = "1.0.1" +__version__ = "1.1.1" diff --git a/python_seed/scripts/cli.py b/python_seed/scripts/cli.py index 7e901126..18381e5d 100644 --- a/python_seed/scripts/cli.py +++ b/python_seed/scripts/cli.py @@ -29,7 +29,6 @@ def pyseed(): def create(name, ci): """Create new python seed skeleton.""" template_dir = str(resources_files("python_seed") / "template" / "module") - print(template_dir) shutil.copytree(template_dir, name) if ci: diff --git a/setup.cfg b/setup.cfg index 947e9dae..499ca12b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.1 +current_version = 1.1.1 commit = True tag = True tag_name = {new_version} diff --git a/setup.py b/setup.py index 7a7fa251..e8198622 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name="python-seed", - version="1.0.1", + version="1.1.1", description="Create skeleton of python project", long_description=readme, long_description_content_type="text/markdown",