-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.changie.yaml
65 lines (65 loc) · 1.57 KB
/
.changie.yaml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
changesDir: .changes
unreleasedDir: unreleased
headerPath: header.tpl.md
versionHeaderPath: ""
versionFooterPath: ""
changelogPath: CHANGELOG.md
versionExt: md
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
kindFormat: '### {{.Kind}}'
changeFormat: '- [#{{.Custom.Issue}}](https://github.com/edgarrmondragon/citric/issues/{{.Custom.Issue}}) {{.Body}}'
headerFormat: ""
footerFormat: ""
newlines:
beforeChangelogVersion: 1
afterKind: 1
beforeKind: 1
afterChange: 1
kinds:
- label: Added
auto: minor
format: "### ✨ {{.Kind}}"
- label: Changed
auto: major
format: "### 🔄 {{.Kind}}"
- label: Deprecated
auto: patch
format: "### ⚠️ {{.Kind}}"
- label: Removed
auto: major
format: "### 🗑️ {{.Kind}}"
- label: Fixed
auto: patch
format: "### 🐛 {{.Kind}}"
- label: Security
auto: patch
format: "### 🔒 {{.Kind}}"
- label: Refactored
auto: patch
format: "### 🛠️ {{.Kind}}"
- label: Documentation
auto: patch
format: "### 📚 {{.Kind}}"
- label: Typing
auto: patch
format: "### 🏷️ {{.Kind}}"
- label: Packaging
auto: patch
format: "### 📦 {{.Kind}}"
replacements:
- path: pyproject.toml
find: "^version = \".*\"$"
replace: "version = \"{{.VersionNoPrefix}}\""
- path: src/citric/client.py
find: "NEXT_VERSION"
replace: "{{.VersionNoPrefix}}"
- path: .github/ISSUE_TEMPLATE/BUG.yml
find: "^ placeholder: \".*\"$"
replace: " placeholder: \"{{.VersionNoPrefix}}\""
- path: CITATION.cff
find: "^version: \".*\"$"
replace: "version: \"{{.VersionNoPrefix}}\""
custom:
- key: Issue
type: int
minInt: 1