From 00987b6f35f7ede78c94a910aaa846678ffd7eea Mon Sep 17 00:00:00 2001 From: indaco Date: Wed, 1 May 2024 11:37:04 +0200 Subject: [PATCH] chore: setup changie --- .changes/header.tpl.md | 6 ++++++ .changes/unreleased/.gitkeep | 0 .changie.yaml | 28 ++++++++++++++++++++++++++++ CHANGELOG.md | 8 ++++++++ 4 files changed, 42 insertions(+) create mode 100644 .changes/header.tpl.md create mode 100644 .changes/unreleased/.gitkeep create mode 100644 .changie.yaml create mode 100644 CHANGELOG.md diff --git a/.changes/header.tpl.md b/.changes/header.tpl.md new file mode 100644 index 0000000..baeebde --- /dev/null +++ b/.changes/header.tpl.md @@ -0,0 +1,6 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), +and is generated by [changelogen](https://github.com/unjs/changelogen) and managed with [Changie](https://github.com/miniscruff/changie). diff --git a/.changes/unreleased/.gitkeep b/.changes/unreleased/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/.changie.yaml b/.changie.yaml new file mode 100644 index 0000000..b05e67c --- /dev/null +++ b/.changie.yaml @@ -0,0 +1,28 @@ +changesDir: .changes +unreleasedDir: unreleased +headerPath: header.tpl.md +changelogPath: CHANGELOG.md +versionExt: md +versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}' +kindFormat: '### {{.Kind}}' +changeFormat: '* {{.Body}}' +kinds: + - label: Changed + auto: major + - label: Breaking + auto: major + - label: Removed + auto: major + - label: Added + auto: minor + - label: Deprecated + auto: minor + - label: Fixed + auto: patch + - label: Security + auto: patch +newlines: + afterChangelogHeader: 1 + beforeChangelogVersion: 1 + endOfVersion: 1 +envPrefix: CHANGIE_ diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..380b5e4 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), +and is generated by [changelogen](https://github.com/unjs/changelogen) and managed with [Changie](https://github.com/miniscruff/changie). + +No releases yet, this file will be updated when generating your first release.