Skip to content

Commit

Permalink
Added release procedure and cut 0.3.0 in the Changelog (#333)
Browse files Browse the repository at this point in the history
* Added release procedure

Signed-off-by: Joe Elliott <[email protected]>

* iamge => image

Signed-off-by: Joe Elliott <[email protected]>
  • Loading branch information
joe-elliott authored Nov 10, 2020
1 parent 44370f9 commit 7ff3853
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## master / unreleased

## v0.3.0

* [CHANGE] Bloom filters are now sharded to reduce size and improve caching, as blocks grow. This is a **breaking change** and all data stored before this change will **not** be queryable. [#192](https://github.com/grafana/tempo/pull/192)
* [CHANGE] Rename maintenance cycle to blocklist poll. [#315](https://github.com/grafana/tempo/pull/315)
* [ENHANCEMENT] CI checks for vendored dependencies using `make vendor-check`. Update CONTRIBUTING.md to reflect the same before checking in files in a PR. [#274](https://github.com/grafana/tempo/pull/274)
Expand Down
16 changes: 16 additions & 0 deletions RELEASES.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Releases

This document details release procedures for Tempo. Currently it's pretty dang easy.

- Push a semver tag to master. Something like:
- `git tag -a v0.3.0`
- `git push origin --tags`
- This will initiate the build process in Github Actions and Drone. The tagged docker image should
be available here shortly: https://hub.docker.com/r/grafana/tempo/tags?page=1&ordering=last_updated
- A Github Release Draft should also be available here: https://github.com/grafana/tempo/releases
- Link the Changelog
- Call out contributors for their work
- Cull unnecessary changes that don't impact the Tempo binary or deployment
- Call out breaking changes!
- Submit a PR cleaning up the changelog and moving everything under "master/unreleased" to be under
the newly minted version.

0 comments on commit 7ff3853

Please sign in to comment.