1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#:schema https://docs.cocogitto.io/cog-schema.json
# For a reference of possible values: https://docs.cocogitto.io/config/
# A list of glob patterns describing branches on which semver bump are allowed
= ["main"]
# To tell cog to pick only version starting with a prefix
= "v"
# Ignore merge commits from conventional commit checks
= true
# A list of command to run BEFORE creating a version.
# All change generated by those commands will be committed with the generated version commit.
# `{{version}}` will be interpreted as your target version
= [
"cargo test",
"cargo clippy",
"cargo fmt --all",
"cargo set-version {{version}}",
]
# A list of command to run AFTER creating a version.
# `{{version}}` will be interpreted as your target version
= [
"git push",
"cargo package",
"cargo publish"
]
# Whether to only consider commits since the latest SemVer tag.
= false
[]
= "CHANGELOG.md"
= "remote"
= "github.com"
= "wrpt"
= "wahl-dev"
= [
{ = "Wahib LAROUI", = "Wahib-L" },
]