@@ -5,7 +5,7 @@ are available as PyPI packages (installable with `pip`).
55
66### [ Conventional JIRA] ( https://pypi.org/project/conventional-JIRA/ )
77
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
99JIRA issue format, i.e. ` project-issueNumber ` . This standardises scopes in a
1010meaningful way.
1111
@@ -18,6 +18,7 @@ pip install conventional-JIRA
1818### [ GitHub JIRA Conventional] ( https://pypi.org/project/cz-github-jira-conventional/ )
1919
2020This plugin extends the commitizen tools by:
21+
2122- requiring a JIRA issue id in the commit message
2223- creating links to GitHub commits in the CHANGELOG.md
2324- creating links to JIRA issues in the CHANGELOG.md
@@ -32,7 +33,7 @@ For installation instructions (configuration and pre-commit) please visit https:
3233
3334### [ cz-emoji] ( https://github.com/adam-grant-hendry/cz-emoji )
3435
35- * conventional commit * format, but with emojis
36+ _ conventional commit _ format, but with emojis
3637
3738### Installation
3839
@@ -64,23 +65,50 @@ pip install cz-conventional-gitmoji
6465cz --name cz_gitmoji commit
6566```
6667
67-
6868### [ Commitizen emoji] ( https://pypi.org/project/commitizen-emoji/ ) (Unmaintained)
6969
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.
7171
7272It can be installed with ` pip install commitizen-emoji ` .
7373
7474Usage: ` cz --name cz_commitizen_emoji commit ` .
7575
7676### [ Conventional Legacy (cz_legacy)] [ 1 ]
7777
78- An extension of the * conventional commit * format to include user-specified
78+ An extension of the _ conventional commit _ format to include user-specified
7979legacy change types in the ` CHANGELOG ` while preventing the legacy change types
8080from being used in new commit messages
8181
8282` cz_legacy ` can be installed with ` pip install cz_legacy `
8383
8484See the [ README] [ 1 ] for instructions on configuration
8585
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