diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 59cf597f2..802956ff3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 6.15.7 +current_version = 6.15.8 commit = True message = "Bump version: {current_version} → {new_version} [ci skip]" parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/cx_Freeze/__init__.py b/cx_Freeze/__init__.py index c7104da9f..e76e5c573 100644 --- a/cx_Freeze/__init__.py +++ b/cx_Freeze/__init__.py @@ -42,7 +42,7 @@ __all__.append(bdist_rpm.__name__) -__version__ = "6.15.7" +__version__ = "6.15.8" def setup(**attrs): # noqa: D103 diff --git a/doc/src/conf.py b/doc/src/conf.py index 2fc396235..df7340191 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -48,7 +48,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = "6.15.7" +release = "6.15.8" # The short X.Y version. version = ".".join(release.split(".")[:2]) diff --git a/pyproject.toml b/pyproject.toml index 3502af610..d7f1bc9c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta" [project] name = "cx_Freeze" -version = "6.15.7" +version = "6.15.8" description = "Create standalone executables from Python scripts" authors = [ {name = "Anthony Tuininga", email = "anthony.tuininga@gmail.com"}