diff --git a/.changelog.yml b/.changelog.yml new file mode 100755 index 0000000..fc130be --- /dev/null +++ b/.changelog.yml @@ -0,0 +1,57 @@ +# The full repository name +repo: gitea/go-sdk + +# Service type (gitea or github) +service: gitea + +# Base URL for Gitea instance if using gitea service type (optional) +# Default: https://gitea.com +base-url: https://gitea.com + +# Changelog groups and which labeled PRs to add to each group +groups: + - + name: BREAKING + labels: + - kind/breaking + - + name: FEATURES + labels: + - kind/feature + - + name: BUGFIXES + labels: + - kind/bug + - + name: ENHANCEMENTS + labels: + - kind/enhancement + - kind/refactor + - kind/ui + - + name: SECURITY + labels: + - kind/security + - + name: TESTING + labels: + - kind/testing + - + name: TRANSLATION + labels: + - kind/translation + - + name: BUILD + labels: + - kind/build + - kind/lint + - + name: DOCS + labels: + - kind/docs + - + name: MISC + default: true + +# regex indicating which labels to skip for the changelog +skip-labels: skip-changelog|backport\/.+ diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f1c5f29 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +## [v0.11.0](https://gitea.com/gitea/go-sdk/pulls?q=&type=all&state=closed&milestone=1222) - 2020-01-27 +* FEATURES + * Add VersionCheck (#215) + * Add Issue Un-/Subscription function (#214) + * Add Reaction struct and functions (#213) + * Add GetBlob (#212) +* BUGFIXES + * Fix ListIssue Functions (#225) + * Fix ListRepoPullRequests (#219) +* ENHANCEMENTS + * Add some pull list options (#217) + * Extend StopWatch struct & functions (#211) +* TESTING + * Add Test Framework (#227) +* BUILD + * Use golangci-lint and revive for linting (#220)