From 2d00d901880f703f62c9a4c28b1aa89a39d1ed2f Mon Sep 17 00:00:00 2001 From: Franklin Hu Date: Mon, 23 Jul 2012 17:52:00 -0700 Subject: [PATCH] Add release doc, changelog Author: @franklinhu Fixes #82 URL: https://github.com/twitter/zipkin/pull/82 --- CHANGELOG | 22 ++++++++++++++++++++++ RELEASE | 12 ++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 CHANGELOG create mode 100644 RELEASE diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000000..b79d324252 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,22 @@ +# 0.2.0 +* Collector + * Refactor scrooge specific code to zipkin-scrooge + * Refactor Scribe specific code to zipkin-scribe + * Add top annotations storage endpoints +* Hadoop + * Add job runner + * Add expensive endpoints job + * Add whale report +* Query + * Add top annotations query endpoints +* Web + * Add Scala UI (zipkin-finatra), not entirely stable yet. Rails UI + (zipkin-web) is deprecated and will be removed in the next release. + * Add static trace rendering page + * Add top annotations suggestions on search page + * Add link to static search page +* Misc + * Refactor many shared classes from zipkin-server to zipkin-common + for reuse in zipkin-finatra + * Add startup scripts + diff --git a/RELEASE b/RELEASE new file mode 100644 index 0000000000..14976b5499 --- /dev/null +++ b/RELEASE @@ -0,0 +1,12 @@ +# Steps for releasing +* Update the changelog on master +* Cut the release branch - git checkout -b 0.2.x + * bump to stable - bin/sbt version-to-stable + * package the jars - bin/sbt package-dist + * tag - git tag 0.2.0 + * bump the patch version - bin/sbt version-bump-patch + * bump to SNAPSHOT - bin/sbt version-to-snapshot + * commit - git commit && git push +* Back on master - git checkout master + * bump the minor/major version - bin/sbt version-bump-minor +