Skip to content

Commit

Permalink
Bump version: 6.16.0-dev12 → 7.0.0-rc0 [ci skip] (#2315)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelotduarte committed Mar 23, 2024
1 parent 0860bf1 commit 52cc3d4
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cx_Freeze/__init__.py
Expand Up @@ -44,7 +44,7 @@
__all__ += ["bdist_appimage", "bdist_deb", "bdist_rpm"]


__version__ = "6.16.0-dev12"
__version__ = "7.0.0-rc0"


def setup(**attrs) -> setuptools.Distribution: # noqa: D103
Expand Down
2 changes: 1 addition & 1 deletion doc/src/conf.py
Expand Up @@ -43,7 +43,7 @@
# General information about the project.
project = "cx_Freeze"
copyright = "2024, Marcelo Duarte" # noqa: A001
__version__ = "6.16.0-dev12"
__version__ = "7.0.0-rc0"

# 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
Expand Up @@ -5,7 +5,7 @@ Welcome to cx_Freeze's documentation!
**cx_Freeze** creates standalone executables from Python scripts, with the same
performance, is cross-platform and should work on any platform that Python_
itself works on.
Current version of **cx_Freeze** is 6.16 and its supports Python 3.8 to 3.12.
Current version of **cx_Freeze** is 7.0 and its supports Python 3.8 to 3.12.

**cx_Freeze** is distributed under an open-source :ref:`license <license>`
(the PSF license).
Expand Down
2 changes: 1 addition & 1 deletion doc/src/script.rst
Expand Up @@ -97,5 +97,5 @@ Further customization can be done using the following options:
.. versionadded:: 6.10
``manifest`` and ``uac-admin`` options.

.. versionadded:: 6.16
.. versionadded:: 7.0
``uac-uiaccess`` option.
4 changes: 2 additions & 2 deletions doc/src/setup_script.rst
Expand Up @@ -624,7 +624,7 @@ bdist_deb
This command is available on Linux systems; It is a simple wrapper around
'alien' that creates an RPM distribution, then converts to a DEB distribution.

.. versionadded:: 6.16
.. versionadded:: 7.0

Please check the options on the command line:

Expand Down Expand Up @@ -807,7 +807,7 @@ constructor are as follows:
.. versionadded:: 6.10
``manifest`` and ``uac_admin`` options.

.. versionadded:: 6.16
.. versionadded:: 7.0
``uac_uiaccess`` option.

.. versionchanged:: 6.5
Expand Down
2 changes: 1 addition & 1 deletion doc/src/versions.rst
Expand Up @@ -9,7 +9,7 @@ Versions of cx_Freeze
* - cx_Freeze version
- Python version
- Status
* - cx_Freeze 6.16
* - cx_Freeze 7.0
- Python 3.8 to 3.12
- supported
* - cx_Freeze 6.14 and 6.15
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -116,7 +116,7 @@ target-version = ["py38"]

[tool.bumpversion]
commit = true
current_version = "6.16.0-dev12"
current_version = "7.0.0-rc0"
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 52cc3d4

Please sign in to comment.