diff --git a/humps/__init__.py b/humps/__init__.py index d40ce9b..c459d1e 100644 --- a/humps/__init__.py +++ b/humps/__init__.py @@ -5,7 +5,7 @@ Underscore-to-camelCase converter (and vice versa) for strings and dict keys in Python. """ __title__ = "pyhumps" -__version__ = "1.6.0" +__version__ = "1.6.1" __author__ = "Nick Ficano" __license__ = "MIT License" __copyright__ = "Copyright 2019 Nick Ficano" diff --git a/setup.cfg b/setup.cfg index f96a98c..61450d2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.6.0 +current_version = 1.6.1 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch} diff --git a/setup.py b/setup.py index 5017bff..6172dfd 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def run(self): setup( name="pyhumps", - version="1.6.0", + version="1.6.1", author="Nick Ficano", author_email="nficano@gmail.com", packages=["humps"],