Changelog v0.11.0 #235

Merged
techknowlogick merged 2 commits from 6543/go-sdk:changelog-v0.11.0 into master 2020-01-28 06:15:49 +00:00
2 changed files with 75 additions and 0 deletions

57
.changelog.yml Executable file
View File

@ -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\/.+

18
CHANGELOG.md Normal file
View File

@ -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)