Skip to content

Commit

Permalink
fix version in v2/gax.go, add RELEASING.md (#76)
Browse files Browse the repository at this point in the history
This commit will be tagged v2.0.3.
  • Loading branch information
jeanbza committed Dec 19, 2018
1 parent 53d70ee commit c8a15ba
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Releasing

1. Make changes.
2. Determine next version. For the sake of this list, let's assume 1.2.3.
3. Update `gax.go` with `const Version = "1.2.3"`. If v2, do the same to `v2/gax.go`.
4. `git checkout -b my_branch && git commit && git push my_remote my_branch`
5. Get it reviewed and merged.
6. `git checkout master && git tag v1.2.3 && git push origin v1.2.3`
7. Update the [releases page on GitHub](https://github.com/googleapis/gax-go/releases)
2 changes: 1 addition & 1 deletion v2/gax.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@
package gax

// Version specifies the gax-go version being used.
const Version = "2.0.1"
const Version = "2.0.3"

0 comments on commit c8a15ba

Please sign in to comment.