-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy path.changie.yaml
More file actions
48 lines (48 loc) · 1.22 KB
/
.changie.yaml
File metadata and controls
48 lines (48 loc) · 1.22 KB
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
# docs: https://changie.dev/config/
---
changesDir: .changes
unreleasedDir: unreleased
headerPath: header.tpl.md
versionExt: md
changelogPath: docs/release-notes.md
versionFormat: '## [{{.Version}}](https://pypi.org/project/ms-fabric-cli/{{.Version}}) - {{.Time.Format "January 02, 2006"}}'
kindFormat: "### {{.Kind}}"
changeFormat: "* {{.Body}} by [{{.Custom.Author}}]({{.Custom.AuthorLink}})"
kinds:
- label: "⚠️ Breaking Change"
key: breaking
auto: minor
- label: "🆕 New Items Support"
key: new-items
auto: minor
- label: "✨ New Functionality"
key: added
auto: minor
- label: "🔧 Bug Fix"
key: fixed
auto: patch
- label: "⚡ Additional Optimizations"
key: optimization
auto: patch
- label: "📝 Documentation Update"
key: docs
auto: patch
newlines:
afterChangelogHeader: 1
beforeChangelogVersion: 1
endOfVersion: 2
afterKind: 1
beforeKind: 1
envPrefix: CHANGIE_
custom:
- key: Author
label: Author's GitHub Username
type: string
minLength: 3
post:
- key: AuthorLink
value: "https://github.com/{{.Custom.Author}}"
replacements:
- path: src/fabric_cli/__init__.py
find: '__version__ = ".*"'
replace: '__version__ = "{{.VersionNoPrefix}}"'