From 31e179ef1ed759f4c13dcd95fc8bc69d3251c58a Mon Sep 17 00:00:00 2001 From: jieyu Date: Sat, 31 Oct 2020 00:25:57 +0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.1=20=E2=86=92=200.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cfg4py/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 7 ++++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/cfg4py/__init__.py b/cfg4py/__init__.py index 13aac13..6210d23 100644 --- a/cfg4py/__init__.py +++ b/cfg4py/__init__.py @@ -6,7 +6,7 @@ __author__ = """Aaron Yang""" __email__ = 'code@jieyu.ai' -__version__ = "__version__ = '0.6.1'" +__version__ = "__version__ = '0.7.0'" def get_instance(): diff --git a/setup.cfg b/setup.cfg index 298cdca..2fb9d4f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.1 +current_version = 0.7.0 commit = True tag = True diff --git a/setup.py b/setup.py index 47ed30d..246bc4b 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ """The setup script.""" -from setuptools import setup, find_packages +from setuptools import find_packages, setup with open('README.rst') as readme_file: readme = readme_file.read() @@ -34,7 +34,8 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', ], - description="A python config module support hierarchical configuration and multi-environment deployment", + description="A python config module support hierarchical configuration and " + "multi-environment deployment", install_requires=requirements, license="BSD license", long_description=readme + '\n\n' + history, @@ -46,7 +47,7 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/jieyu_tech/cfg4py', - version='0.6.1', + version='0.7.0', zip_safe=False, entry_points={ 'console_scripts': ['cfg4py=cfg4py.command_line:main']