Skip to content

Commit d07c029

Browse files
bump: version 2.42.1 → 3.0.0
1 parent 4013f8a commit d07c029

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-4
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repos:
1414
- id: no-commit-to-branch
1515

1616
- repo: https://github.com/commitizen-tools/commitizen
17-
rev: v2.42.1 # automatically updated by Commitizen
17+
rev: v3.0.0 # automatically updated by Commitizen
1818
hooks:
1919
- id: commitizen
2020
- id: commitizen-branch

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,30 @@
11

2+
## v3.0.0 (2023-04-23)
3+
4+
### BREAKING CHANGE
5+
6+
- Plugins are now exposed as `commitizen.plugin` entrypoints
7+
8+
### Feat
9+
10+
- **init**: add new settings
11+
- add semver support through version provider new api (#686)
12+
- **changelog**: add merge_prereleases flag
13+
- **providers**: add a `scm` version provider
14+
- **providers**: add support for some JSON-based version providers (NPM, Composer)
15+
- **providers**: add support for some TOML-based versions (PEP621, Poetry, Cargo)
16+
- **providers**: add a `commitizen.provider` endpoint for alternative versions providers
17+
- **plugins**: Switch to an importlib.metadata.EntryPoint-based plugin loading
18+
19+
### Fix
20+
21+
- **init**: welcome message
22+
- small corrections and clean up
23+
- major version zero message
24+
- update dependencies
25+
- **commands/changelog**: use topological order for commit ordering
26+
- **excepthook**: ensure traceback can only be a `TracebackType` or `None`
27+
228
## v2.42.1 (2023-02-25)
329

430
### Fix

commitizen/__version__.py

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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.commitizen]
2-
version = "2.42.1"
2+
version = "3.0.0"
33
tag_format = "v$version"
44
version_files = [
55
"pyproject.toml:version",
@@ -9,7 +9,7 @@ version_files = [
99

1010
[tool.poetry]
1111
name = "commitizen"
12-
version = "2.42.1"
12+
version = "3.0.0"
1313
description = "Python commitizen client tool"
1414
authors = ["Santiago Fraire <santiwilly@gmail.com>"]
1515
license = "MIT"

0 commit comments

Comments
 (0)