-
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.
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>
- v0.17.62
- v0.17.61
- v0.17.60
- v0.17.59
- v0.17.58
- v0.17.57
- v0.17.56
- v0.17.55
- v0.17.54
- v0.17.53
- v0.17.52
- v0.17.51
- v0.17.50
- v0.17.49
- v0.17.48
- v0.17.47
- v0.17.46
- v0.17.45
- v0.17.44
- v0.17.43
- v0.17.42
- v0.17.41
- v0.17.40
- v0.17.39
- v0.17.38
- v0.17.37
- v0.17.36
- v0.17.35
- v0.17.34
- v0.17.33
- v0.17.32
- v0.17.31
- v0.17.30
- v0.17.29
- v0.17.28
- v0.17.27
- v0.17.26
- v0.17.25
- v0.17.24
- v0.17.23
- v0.17.22
- v0.17.21
- v0.17.20
- v0.17.19
- v0.17.18
- v0.17.17
- v0.17.16
- v0.17.15
- v0.17.14
- v0.17.13
- v0.17.12
- v0.17.11
- v0.17.10
- v0.17.9
- v0.17.8
- v0.17.7
- v0.17.6
- v0.17.5
- v0.17.4
- v0.17.3
- v0.17.2
- v0.17.1
- v0.17.0
1 parent
b90f975
commit a8eba26
Showing
2 changed files
with
15 additions
and
1 deletion.
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 |
---|---|---|
@@ -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. | ||
|
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,3 +1,3 @@ | ||
package graphql | ||
|
||
const Version = "v0.14.0-dev" | ||
const Version = "v0.16.0-dev" |