diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..66ed713 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,2 @@ +#### Pull Request Checklist +- [ ] Update `release_notes.md` if your PR contains major features, breaking changes or bugfixes diff --git a/release_notes.md b/release_notes.md new file mode 100644 index 0000000..8874258 --- /dev/null +++ b/release_notes.md @@ -0,0 +1,18 @@ +# Loop Client Release Notes +This file tracks release notes for the loop client. + +### Developers: +* When new features are added to the repo, a short description of the feature should be added under the "Next Release" heading. +* This should be done in the same PR as the change so that our release notes stay in sync! + +### Release Manager: +* All of the items under the "Next Release" heading should be included in the release notes. +* As part of the PR that bumps the client version, the "Next Release" heading should be replaced with the release version including the changes. + +## Next Release + +#### New Features + +#### Breaking Changes + +#### Bug Fixes \ No newline at end of file diff --git a/version.go b/version.go index 0120582..fc2bfd8 100644 --- a/version.go +++ b/version.go @@ -21,6 +21,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr // These constants define the application version and follow the semantic // versioning 2.0.0 spec (http://semver.org/). const ( + // Note: please update release_notes.md when you change these values. appMajor uint = 0 appMinor uint = 9 appPatch uint = 0