Skip to content

Commit

Permalink
Bump version: 7.2.1 → 7.2.2 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelotduarte committed Sep 23, 2024
1 parent 7a77e75 commit e752750
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -144,15 +144,15 @@ endif

.PHONY: release
release:
@echo "# Run:\n"\
"bump-my-version bump release\n"\
"git push origin `git branch --show-current` --tags"
@echo "Run:"
@echo " bump-my-version bump release"
@echo " git push origin `git branch --show-current` --tags"

.PHONY: release-patch
release-patch:
@echo "# Run:\n"\
"bump-my-version bump patch --new-version=X.XX.X\n"\
"git push origin `git branch --show-current` --tags"
@echo "Run:"
@echo " bump-my-version bump patch --new-version=X.XX.X"
@echo " git push origin `git branch --show-current` --tags"

.PHONY: release-dev
release-dev:
Expand Down
2 changes: 1 addition & 1 deletion cx_Freeze/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
__all__ += ["bdist_appimage", "bdist_deb", "bdist_rpm"]


__version__ = "7.2.1"
__version__ = "7.2.2"


def setup(**attrs) -> setuptools.Distribution: # noqa: D103
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.2.1"
__version__ = "7.2.2"

# 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 @@ -121,7 +121,7 @@ target-version = ["py38"]

[tool.bumpversion]
commit = true
current_version = "7.2.1"
current_version = "7.2.2"
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 e752750

Please sign in to comment.