Skip to content

Latest commit

 

History

History
79 lines (52 loc) · 3.58 KB

CONTRIBUTING.md

File metadata and controls

79 lines (52 loc) · 3.58 KB

Contributing

First off, glad you're here and want to contribute! ❤️

Getting Started

In order to work on this project, you'll need to install a few things:

  1. A recent version of Go
  2. protoc - The protobuf compiler
  3. Docker (only required to if you need/want to build the docker container via make docker)

Once those are installed, running make setup should get you the rest of the way.

When writing tests, be sure that the package in the test file is suffixed with _test. Eg. protoc_gen_doc_test. This ensures that you'll only be testing the public interface.

Submitting a PR

Here are some general guidelines for making PRs for this repo.

  1. Fork this repo
  2. Make a branch off of master (git checkout -b <your_branch_name>)
  3. Make focused commits with descriptive messages
  4. Add tests that fail without your code, and pass with it
  5. GoFmt your code! (see https://blog.golang.org/go-fmt-your-code to setup your editor to do this for you)
  6. Be sure to run make examples so your changes are reflected in the example docs
  7. Ping someone on the PR (Lots of people, including myself, won't get a notification unless pinged directly)

Every PR should have a well detailed summary of the changes being made and the reasoning behind them. Make sure to add at least three sections.

What is Changing?

Make sure you spell out in as much detail as necessary what will happen to which systems when your PR is merged, what are the expected changes.

How is it Changing?

Include any relevant implementation details, mimize surprises for the reviewers in this section, if you had to take some unorthodox approaches (read hacks), explain why here.

What Could Go Wrong?

How has this change been tested? In your opinion what is the risk, if any, of merging these changes.

Reviewers should:

  1. Identify anything that the PR author may have missed from above.
  2. Test the PR through whatever means necessary, including manually, to verify it is safe to be deployed.
  3. Question everything. Never assume that something was tested or fully understood, always question and ask if there is any uncertainty.
  4. Before merging the PR make sure it has one of the Major release, Minor release, or Patch release labels applied to it (useful for the changelog and determining the version for the next release).

Release Process

We follow Semantic Versioning 2.0.0, and the fact that PRs are tagged with the type of release makes determining the next version super simple.

Look through the new (since the last release) PRs that are included in this release to determine the new version.

  • If COUNT(labelled Major release) > 0, then it's a MAJOR version bump.
  • If COUNT(labelled Minor release) > 0, then it's a MINOR version bump.
  • PATCH version bump

Now that we've got the version:

  • Run make docker_test to build the image and generate the examples. There should be no diff after this.
  • Update the version in version.go
  • Update CHANGELOG.md. Be sure to include links to PRs and highlight new features, bug fixes, and any breaking changes.
  • Run make release

Now that the tag is on GitHub, we have a couple more things to do:

  • Create a release based on the tag and copy the entry in CHANGELOG.md into the notes.
  • Run make dist and add the tar files (in ./dist) to the release.

Once CI has run for the tag, Travis will push the image to DockerHub.