Skip to content

Commit

Permalink
Bump version: 0.6.1 → 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zillionare committed Oct 30, 2020
1 parent 3f46555 commit 31e179e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cfg4py/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

__author__ = """Aaron Yang"""
__email__ = '[email protected]'
__version__ = "__version__ = '0.6.1'"
__version__ = "__version__ = '0.7.0'"


def get_instance():
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.1
current_version = 0.7.0
commit = True
tag = True

Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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,
Expand All @@ -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']
Expand Down

0 comments on commit 31e179e

Please sign in to comment.