@@ -5,7 +5,7 @@ are available as PyPI packages (installable with `pip`).
5
5
6
6
### [ Conventional JIRA] ( https://pypi.org/project/conventional-JIRA/ )
7
7
8
- Just like * conventional commit * format, but the scope has been restricted to a
8
+ Just like _ conventional commit _ format, but the scope has been restricted to a
9
9
JIRA issue format, i.e. ` project-issueNumber ` . This standardises scopes in a
10
10
meaningful way.
11
11
@@ -18,6 +18,7 @@ pip install conventional-JIRA
18
18
### [ GitHub JIRA Conventional] ( https://pypi.org/project/cz-github-jira-conventional/ )
19
19
20
20
This plugin extends the commitizen tools by:
21
+
21
22
- requiring a JIRA issue id in the commit message
22
23
- creating links to GitHub commits in the CHANGELOG.md
23
24
- creating links to JIRA issues in the CHANGELOG.md
@@ -32,7 +33,7 @@ For installation instructions (configuration and pre-commit) please visit https:
32
33
33
34
### [ cz-emoji] ( https://github.com/adam-grant-hendry/cz-emoji )
34
35
35
- * conventional commit * format, but with emojis
36
+ _ conventional commit _ format, but with emojis
36
37
37
38
### Installation
38
39
@@ -64,23 +65,50 @@ pip install cz-conventional-gitmoji
64
65
cz --name cz_gitmoji commit
65
66
```
66
67
67
-
68
68
### [ Commitizen emoji] ( https://pypi.org/project/commitizen-emoji/ ) (Unmaintained)
69
69
70
- Just like * conventional commit * format, but with emojis and optionally time spent and related tasks.
70
+ Just like _ conventional commit _ format, but with emojis and optionally time spent and related tasks.
71
71
72
72
It can be installed with ` pip install commitizen-emoji ` .
73
73
74
74
Usage: ` cz --name cz_commitizen_emoji commit ` .
75
75
76
76
### [ Conventional Legacy (cz_legacy)] [ 1 ]
77
77
78
- An extension of the * conventional commit * format to include user-specified
78
+ An extension of the _ conventional commit _ format to include user-specified
79
79
legacy change types in the ` CHANGELOG ` while preventing the legacy change types
80
80
from being used in new commit messages
81
81
82
82
` cz_legacy ` can be installed with ` pip install cz_legacy `
83
83
84
84
See the [ README] [ 1 ] for instructions on configuration
85
85
86
- [ 1 ] : https://pypi.org/project/cz_legacy
86
+ [ 1 ] : https://pypi.org/project/cz_legacy
87
+
88
+ ### [ commitizen-deno-provider] ( https://pypi.org/project/commitizen-deno-provider/ )
89
+
90
+ A provider for Deno projects. The provider updates the version in deno.json, deno.lock and jsr.json files.
91
+
92
+ #### Installation
93
+
94
+
95
+ ```
96
+ pip install commitizen-deno-provider
97
+ ```
98
+
99
+ #### Usage
100
+
101
+ Add ` deno-provider ` to your configuration file.
102
+
103
+ Example for ` .cz.yaml ` :
104
+
105
+ ``` yml
106
+ ---
107
+ commitizen :
108
+ major_version_zero : true
109
+ name : cz_conventional_commits
110
+ tag_format : $version
111
+ update_changelog_on_bump : true
112
+ version_provider : deno-provider
113
+ version_scheme : semver
114
+ ` ` `
0 commit comments