mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-15 08:09:02 +00:00
feat: Add commitizen and version file
This commit is contained in:
parent
2566486183
commit
6f46f9851e
3 changed files with 12 additions and 1 deletions
8
.cz.toml
Normal file
8
.cz.toml
Normal file
|
@ -0,0 +1,8 @@
|
|||
[tool.commitizen]
|
||||
name = "cz_conventional_commits"
|
||||
tag_format = "$version"
|
||||
version_scheme = "semver"
|
||||
version = "0.0.1"
|
||||
version_files = ["version.php:VERSION"]
|
||||
update_changelog_on_bump = true
|
||||
major_version_zero = true
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +1,2 @@
|
|||
.idea
|
||||
credentials.php
|
||||
config.php
|
3
version.php
Normal file
3
version.php
Normal file
|
@ -0,0 +1,3 @@
|
|||
<?php
|
||||
|
||||
const VERSION = "0.0.1";
|
Loading…
Reference in a new issue