From 8452a1c8de9e194c83fec6fb8d0a0b7ad6cb52dd Mon Sep 17 00:00:00 2001 From: androiddrew Date: Mon, 29 Jan 2018 15:46:31 -0500 Subject: [PATCH] Added support for bumpversion --- setup.cfg | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/setup.cfg b/setup.cfg index a49955a..7f1cb74 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,14 @@ +[bumpversion] +current_version = 0.1.1 + +[bumpversion:file:setup.py] +search = version='{current_version}' +replace = version='{new_version}' + +[bumpversion:file:apistar_mail/__init__.py] +search = __version__ = '{current_version}' +replace = __version__ = '{new_version}' + [bdist_wheel] python-tag = py35