Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add release doc, changelog #82

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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

12 changes: 12 additions & 0 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -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