From 2f59c3e489617b87fe197fa3dd6455722cef067c Mon Sep 17 00:00:00 2001 From: Christiaan Meijer Date: Wed, 12 Jul 2023 11:51:37 +0200 Subject: [PATCH] fix bumpversion config Bumpversion was failing because incorrect quote type was specified. This apparently was no problem for earlier, more lenient, bumpversion versions. --- .bumpversion.cfg | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1faa3865..51eb2c98 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,12 +1,12 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.1.0 [comment] comment = The contents of this file cannot be merged with that of setup.cfg until https://github.com/c4urself/bump2version/issues/185 is resolved [bumpversion:file:dianna/__init__.py] -search = __version__ = "{current_version}" -replace = __version__ = "{new_version}" +search = __version__ = '{current_version}' +replace = __version__ = '{new_version}' [bumpversion:file:setup.cfg] search = version = {current_version} @@ -17,5 +17,5 @@ search = version: "{current_version}" replace = version: "{new_version}" [bumpversion:file:docs/conf.py] -search = version = "{current_version}" -replace = version = "{new_version}" +search = version = '{current_version}' +replace = version = '{new_version}'