From af493f5f2c9993b528c253cbc574a6a78f65268e Mon Sep 17 00:00:00 2001 From: Marcelo Duarte Date: Sun, 26 May 2024 02:18:13 -0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=207.1.0-dev0=20=E2=86=92=207.1.?= =?UTF-8?q?0=20[ci=20skip]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .pre-commit-config.yaml | 2 +- README.md | 6 +++++- cx_Freeze/__init__.py | 2 +- cx_Freeze/finder.py | 3 +-- doc/src/conf.py | 2 +- pyproject.toml | 2 +- 6 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index dba2ff375..37008128b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -36,7 +36,7 @@ repos: additional_dependencies: ["validate-pyproject-schema-store[all]"] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.4.4 + rev: v0.4.5 hooks: - id: ruff args: ["--fix", "--unsafe-fixes"] diff --git a/README.md b/README.md index 789135688..3814676f2 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,11 @@ The official documentation is available If you need help you can also ask on the [discussion](https://github.com/marcelotduarte/cx_Freeze/discussions) channel. -# What's New: +# What's New v7.1: +- Added new option --zip-filename in build_exe +- Bug fixes and improvements + +# What's New v7.0: - Added support for [pyproject.toml](https://cx-freeze.readthedocs.io/en/stable/setup_script.html) - Create Linux AppImage format: [bdist_appimage](https://cx-freeze.readthedocs.io/en/stable/bdist_appimage.html) - Create an DEB distribution: [bdist_deb](https://cx-freeze.readthedocs.io/en/stable/bdist_deb.html) diff --git a/cx_Freeze/__init__.py b/cx_Freeze/__init__.py index ca467d10f..4e9615379 100644 --- a/cx_Freeze/__init__.py +++ b/cx_Freeze/__init__.py @@ -44,7 +44,7 @@ __all__ += ["bdist_appimage", "bdist_deb", "bdist_rpm"] -__version__ = "7.1.0-dev0" +__version__ = "7.1.0" def setup(**attrs) -> setuptools.Distribution: # noqa: D103 diff --git a/cx_Freeze/finder.py b/cx_Freeze/finder.py index 070702729..e8ad4bf87 100644 --- a/cx_Freeze/finder.py +++ b/cx_Freeze/finder.py @@ -4,6 +4,7 @@ import importlib.machinery import logging +import opcode import os import sys from contextlib import suppress @@ -14,8 +15,6 @@ from tempfile import TemporaryDirectory from typing import TYPE_CHECKING, Any -import opcode - from cx_Freeze.common import ( code_object_replace, get_resource_file_path, diff --git a/doc/src/conf.py b/doc/src/conf.py index 959f20fbd..622ac7c8c 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -45,7 +45,7 @@ # General information about the project. project = "cx_Freeze" copyright = "2024, Marcelo Duarte" # noqa: A001 -__version__ = "7.1.0-dev0" +__version__ = "7.1.0" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/pyproject.toml b/pyproject.toml index 2a238c544..e7367d939 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -117,7 +117,7 @@ target-version = ["py38"] [tool.bumpversion] commit = true -current_version = "7.1.0-dev0" +current_version = "7.1.0" message = "Bump version: {current_version} → {new_version} [ci skip]" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)(\\-(?P[a-z]+)(?P\\d+))?" serialize = [