Skip to content

Commit 68ed7bc

Browse files
committed
bump: version 1.4.0 → 1.5.0
1 parent 7348e8e commit 68ed7bc

File tree

3 files changed

+27
-4
lines changed

3 files changed

+27
-4
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,61 @@
11
# CHANGELOG
22

3+
## v1.5.0
4+
5+
### Feature
6+
7+
- it is possible to specify a pattern to be matched in configuration `files` when doing bump.
8+
9+
## v1.4.0
10+
11+
### Feature
12+
13+
- new argument (--yes) in bump to accept prompt questions
14+
15+
### Fix
16+
17+
- error is shown when commiting fails.
18+
319
## v1.3.0
420

521
### Feature
22+
623
- bump: new commit message template, useful when having to skip ci.
724

825
## v1.2.1
926

1027
### Fix
28+
1129
- prefixes like docs, build, etc no longer generate a PATCH
1230

1331
## v1.2.0
1432

1533
### Feature
34+
1635
- custom cz plugins now support bumping version
1736

1837
## v1.1.1
1938

2039
### Fix
40+
2141
- breaking change is now part of the body, instead of being in the subject
2242

2343
## v1.1.0
2444

2545
### Features
46+
2647
- auto bump version based on conventional commits using sem ver
2748
- pyproject support (see [pyproject.toml](./pyproject.toml) for usage)
2849

2950
## v1.0.0
3051

3152
### Features
53+
3254
- more documentation
3355
- added tests
3456
- support for conventional commits 1.0.0
3557

3658
### BREAKING CHANGES
59+
3760
- use of questionary to generate the prompt (so we depend on promptkit 2.0)
3861
- python 3 only

commitizen/__version__.py

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

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tool.commitizen]
2-
version = "1.4.0"
2+
version = "1.5.0"
33
tag_format = "v$version"
44
files = [
5-
"pyproject.toml",
5+
"pyproject.toml:version",
66
"commitizen/__version__.py"
77
]
88

@@ -29,7 +29,7 @@ exclude = '''
2929

3030
[tool.poetry]
3131
name = "commitizen"
32-
version = "1.4.0"
32+
version = "1.5.0"
3333
description = "Python commitizen client tool"
3434
authors = ["Santiago Fraire <santiwilly@gmail.com>"]
3535
license = "MIT"

0 commit comments

Comments
 (0)