-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Steve Coffman <steve@khanacademy.org>
- Loading branch information
1 parent
98ebab3
commit 0e01bf1
Showing
1 changed file
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
# When gqlgen gets released, the following things need to happen | ||
Assuming the next version is $NEW_VERSION=v0.16.0 or something like that. | ||
|
||
1. Update https://github.com/99designs/gqlgen/blob/master/graphql/version.go#L3 | ||
2. Update https://github.com/99designs/gqlgen/blob/master/docs/build.sh#L13 | ||
4. git commit and push those file changes to master | ||
3. git tag -a $NEW_VERSION -m $NEW_VERSION | ||
4. git push origin $NEW_VERSION | ||
5. git-chglog -o CHANGELOG.md | ||
6. git commit and push the CHANGELOG.md | ||
7. https://github.com/99designs/gqlgen/releases and draft new release, autogenerate the release notes, and Create a discussion for this release | ||
8. Comment on the release discussion with any really important notes (breaking changes) | ||
1. Run the https://github.com/99designs/gqlgen/blob/master/bin/release: | ||
``` | ||
./bin/release $NEW_VERSION | ||
``` | ||
2. git-chglog -o CHANGELOG.md | ||
3. git commit and push the CHANGELOG.md | ||
4. Go to https://github.com/99designs/gqlgen/releases and draft new release, autogenerate the release notes, and Create a discussion for this release | ||
5. Comment on the release discussion with any really important notes (breaking changes) | ||
|
||
I used https://github.com/git-chglog/git-chglog to automate the changelog maintenance process for now. We could just as easily use go releaser to make the whole thing automated. | ||
|