Skip to content

Commit

Permalink
Bump version: 3.5.2 → 3.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nficano committed Feb 4, 2022
1 parent fdfab2e commit f0e3fe0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion humps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Underscore-to-camelCase converter (and vice versa) for strings and dict keys in Python.
"""
__title__ = "pyhumps"
__version__ = "3.5.2"
__version__ = "3.5.3"
__author__ = "Nick Ficano"
__license__ = "MIT License"
__copyright__ = "Copyright 2019 Nick Ficano"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "humps"
version = "3.5.2"
version = "3.5.3"
description = "Convert strings (and dictionary keys) between snake case, camel case and pascal case in Python."
authors = ["Nick Ficano <nficano@gmail.com>"]
license = "The Unlicense (Unlicense)"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 3.5.2
current_version = 3.5.3
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setuptools.setup(
name="pyhumps",
version="3.5.2",
version="3.5.3",
author="Nick Ficano",
author_email="nficano@gmail.com",
packages=["humps"],
Expand Down

0 comments on commit f0e3fe0

Please sign in to comment.