diff --git a/coolname/__init__.py b/coolname/__init__.py index f432a18..8654756 100755 --- a/coolname/__init__.py +++ b/coolname/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.0.0' +__version__ = '2.1.0' # Hint: set COOLNAME_DATA_DIR and/or COOLNAME_DATA_MODULE # before `import coolname` to change the default generator. diff --git a/docs/conf.py b/docs/conf.py index 1145341..b847b31 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -63,7 +63,7 @@ # The short X.Y version. version = '1.0' # The full version, including alpha/beta/rc tags. -release = '2.0.0' +release = '2.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index c01ba42..1578a0a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0 +current_version = 2.1.0 commit = True tag = True tag_name = {new_version} diff --git a/setup.py b/setup.py index 6c87afe..3ede9a0 100755 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ def run(self, *args, **kwargs): setup( name='coolname', - version='2.0.0', + version='2.1.0', description="Random name and slug generator", long_description=readme + '\n\n' + history, author="Alexander Lukanin",