Skip to content

Commit

Permalink
Bump version: 7.1.0-post0 → 7.1.1 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelotduarte committed Jun 14, 2024
1 parent 42e6412 commit 0afa5ec
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cx_Freeze/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
__all__ += ["bdist_appimage", "bdist_deb", "bdist_rpm"]


__version__ = "7.1.0-post0"
__version__ = "7.1.1"


def setup(**attrs) -> setuptools.Distribution: # noqa: D103
Expand Down
2 changes: 1 addition & 1 deletion cx_Freeze/hooks/sklearn.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""A collection of functions which are triggered automatically by finder when
scipy package is included.
scikit-learn package is included.
"""

from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion doc/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
# General information about the project.
project = "cx_Freeze"
copyright = "2024, Marcelo Duarte" # noqa: A001
__version__ = "7.1.0-post0"
__version__ = "7.1.1"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
2 changes: 1 addition & 1 deletion doc/src/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Welcome to cx_Freeze's documentation!
performance, is cross-platform and should work on any platform that Python_
works on.

The current version of **cx_Freeze** is 7.0 and supports Python 3.8 to 3.12.
The current version of **cx_Freeze** is 7.1 and supports Python 3.8 to 3.12.

**cx_Freeze** is distributed under an open-source :ref:`PSF license <license>`.

Expand Down
6 changes: 3 additions & 3 deletions doc/src/versions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ Versions of cx_Freeze
* - cx_Freeze version
- Python version
- Status
* - cx_Freeze 7.0
* - cx_Freeze 7.0 and 7.1
- Python 3.8 to 3.12
- supported
* - cx_Freeze 6.14 and 6.15
- Python 3.7 to 3.11
- supported
- partially supported
* - cx_Freeze 6.9 to 6.13
- Python 3.6 to 3.10
- supported
- unsupported
* - cx_Freeze 6.4 to 6.8
- Python 3.6 to 3.9
- unsupported
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ target-version = ["py38"]

[tool.bumpversion]
commit = true
current_version = "7.1.0-post0"
current_version = "7.1.1"
message = "Bump version: {current_version} → {new_version} [ci skip]"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\-(?P<release>[a-z]+)(?P<build>\\d+))?"
serialize = [
Expand Down

0 comments on commit 0afa5ec

Please sign in to comment.