github.com/kubernetes-incubator/kube-aws@v0.16.4/hack/README.md (about)

     1  ## Release note gathering
     2  
     3  To generate a release note for the release `v0.9.8-rc.1` in Markdown:
     4  
     5  
     6  The pre-requisite is to run `go get` several times to install dependencies:
     7  
     8  ```
     9  $ go get -u "github.com/google/go-github/github"
    10  $ go get -u "golang.org/x/oauth2"
    11  $ go get -u "golang.org/x/context"
    12  ```
    13  
    14  For a release note for a release-candidate version of kube-aws, run:
    15  
    16  ```
    17  $ VERSION=v0.9.8-rc.1 go run relnotes.go
    18  ```
    19  
    20  For one for a final version, run:
    21  
    22  ```
    23  $ VERSION=v0.9.8 go run relnotes.go
    24  ```