Skip to content

Commit c2ae121

Browse files
bump: version 4.10.0 → 4.10.1
1 parent 9473ef3 commit c2ae121

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ repos:
4848
- tomli
4949

5050
- repo: https://github.com/commitizen-tools/commitizen
51-
rev: v4.10.0 # automatically updated by Commitizen
51+
rev: v4.10.1 # automatically updated by Commitizen
5252
hooks:
5353
- id: commitizen
5454
- id: commitizen-branch

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## v4.10.1 (2025-12-11)
2+
3+
### Fix
4+
5+
- **version**: fix the behavior of cz version --major
6+
- **cli**: debug and no_raise can be used together in sys.excepthook
7+
- **git**: replace lstrip with strip for compatibility issue
8+
- **bump**: remove NotAllowed related to --get-next option, other related refactoring
9+
10+
### Refactor
11+
12+
- **version**: rename class member to align with other classes
13+
- **cargo_provider**: cleanup and get rid of potential type errors
14+
- **bump**: extract option validation and new version resolution to new functions
15+
- **changelog**: raise NotAllow when file_name not passed instead of using assert
16+
- **bump**: rename parameter and variables
17+
18+
### Perf
19+
20+
- **ruff**: enable ruff rules TC001~TC006
21+
- add TYPE_CHECKING to CzQuestion imports
22+
123
## v4.10.0 (2025-11-10)
224

325
### Feat

commitizen/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.10.0"
1+
__version__ = "4.10.1"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "commitizen"
3-
version = "4.10.0"
3+
version = "4.10.1"
44
description = "Python commitizen client tool"
55
authors = [{ name = "Santiago Fraire", email = "santiwilly@gmail.com" }]
66
maintainers = [
@@ -121,7 +121,7 @@ build-backend = "poetry.core.masonry.api"
121121

122122

123123
[tool.commitizen]
124-
version = "4.10.0"
124+
version = "4.10.1"
125125
tag_format = "v$version"
126126
version_files = [
127127
"pyproject.toml:version",

0 commit comments

Comments
 (0)