Skip to content

Commit ccb9e07

Browse files
authored
Merge pull request #293 from carlaKC/inrepo-releasenotes
mutli: add release notes file to track in-repo
2 parents 845f72c + a9f8682 commit ccb9e07

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

.github/pull_request_template.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#### Pull Request Checklist
2+
- [ ] Update `release_notes.md` if your PR contains major features, breaking changes or bugfixes

release_notes.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Loop Client Release Notes
2+
This file tracks release notes for the loop client.
3+
4+
### Developers:
5+
* When new features are added to the repo, a short description of the feature should be added under the "Next Release" heading.
6+
* This should be done in the same PR as the change so that our release notes stay in sync!
7+
8+
### Release Manager:
9+
* All of the items under the "Next Release" heading should be included in the release notes.
10+
* As part of the PR that bumps the client version, the "Next Release" heading should be replaced with the release version including the changes.
11+
12+
## Next Release
13+
14+
#### New Features
15+
16+
#### Breaking Changes
17+
18+
#### Bug Fixes

version.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
2121
// These constants define the application version and follow the semantic
2222
// versioning 2.0.0 spec (http://semver.org/).
2323
const (
24+
// Note: please update release_notes.md when you change these values.
2425
appMajor uint = 0
2526
appMinor uint = 9
2627
appPatch uint = 0

0 commit comments

Comments
 (0)