From 68fdc430917d3451cd8f4e7f55a9a5988989dc56 Mon Sep 17 00:00:00 2001 From: Nick Ficano Date: Wed, 15 Jul 2020 15:05:02 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.6.0=20=E2=86=92=201.6.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- humps/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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"],