Skip to content

Commit

Permalink
Fix #1777 by updating version constant and adding release checklist (#…
Browse files Browse the repository at this point in the history
…1848)

* Fix #1777 by updating version constant and adding release checklist

Signed-off-by: Steve Coffman <steve@khanacademy.org>

* Revise to use script 🤦

Signed-off-by: Steve Coffman <steve@khanacademy.org>
StevenACoffman authored Jan 25, 2022
1 parent b90f975 commit a8eba26
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions RELEASE-CHECKLIST.md
Original file line number Diff line number Diff line change
@@ -0,0 +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. 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.

2 changes: 1 addition & 1 deletion graphql/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package graphql

const Version = "v0.14.0-dev"
const Version = "v0.16.0-dev"

0 comments on commit a8eba26

Please sign in to comment.