diff --git a/HISTORY.rst b/HISTORY.rst index a896ac90..e257ce14 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,11 @@ History ======= +0.6.4 (2020-05-20) +------------------ + +* Fix for bumpversion usage + 0.6.3 (2020-05-20) ------------------ diff --git a/bleak/__version__.py b/bleak/__version__.py index 95eb4064..732e0893 100644 --- a/bleak/__version__.py +++ b/bleak/__version__.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -__version__ = "__version__ = '0.6.3'" +__version__ = "0.6.4" diff --git a/setup.cfg b/setup.cfg index 26f54d22..44dc36e8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,11 @@ [bumpversion] -current_version = 0.6.3 -commit = True -tag = True +current_version = 0.6.4 +commit = False +tag = False [bumpversion:file:bleak/__version__.py] -search = __version__ = '{current_version}' -replace = __version__ = '{new_version}' +search = __version__ = "{current_version}" +replace = __version__ = "{new_version}" [bdist_wheel] universal = 1