Skip to content

Commit

Permalink
Bump version: 7.1.0-dev0 → 7.1.0 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelotduarte committed May 26, 2024
1 parent c3d00d0 commit af493f5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
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-dev0"
__version__ = "7.1.0"


def setup(**attrs) -> setuptools.Distribution: # noqa: D103
Expand Down
3 changes: 1 addition & 2 deletions cx_Freeze/finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

import importlib.machinery
import logging
import opcode
import os
import sys
from contextlib import suppress
Expand All @@ -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,
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-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
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-dev0"
current_version = "7.1.0"
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 af493f5

Please sign in to comment.