File tree 3 files changed +27
-4
lines changed
3 files changed +27
-4
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
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
+
3
19
## v1.3.0
4
20
5
21
### Feature
22
+
6
23
- bump: new commit message template, useful when having to skip ci.
7
24
8
25
## v1.2.1
9
26
10
27
### Fix
28
+
11
29
- prefixes like docs, build, etc no longer generate a PATCH
12
30
13
31
## v1.2.0
14
32
15
33
### Feature
34
+
16
35
- custom cz plugins now support bumping version
17
36
18
37
## v1.1.1
19
38
20
39
### Fix
40
+
21
41
- breaking change is now part of the body, instead of being in the subject
22
42
23
43
## v1.1.0
24
44
25
45
### Features
46
+
26
47
- auto bump version based on conventional commits using sem ver
27
48
- pyproject support (see [ pyproject.toml] ( ./pyproject.toml ) for usage)
28
49
29
50
## v1.0.0
30
51
31
52
### Features
53
+
32
54
- more documentation
33
55
- added tests
34
56
- support for conventional commits 1.0.0
35
57
36
58
### BREAKING CHANGES
59
+
37
60
- use of questionary to generate the prompt (so we depend on promptkit 2.0)
38
61
- python 3 only
Original file line number Diff line number Diff line change 1
- __version__ = "1.4 .0"
1
+ __version__ = "1.5 .0"
Original file line number Diff line number Diff line change 1
1
[tool .commitizen ]
2
- version = " 1.4 .0"
2
+ version = " 1.5 .0"
3
3
tag_format = " v$version"
4
4
files = [
5
- " pyproject.toml" ,
5
+ " pyproject.toml:version " ,
6
6
" commitizen/__version__.py"
7
7
]
8
8
@@ -29,7 +29,7 @@ exclude = '''
29
29
30
30
[tool .poetry ]
31
31
name = " commitizen"
32
- version = " 1.4 .0"
32
+ version = " 1.5 .0"
33
33
description = " Python commitizen client tool"
34
34
authors = [" Santiago Fraire <santiwilly@gmail.com>" ]
35
35
license = " MIT"
You can’t perform that action at this time.
0 commit comments