-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Author: @franklinhu Fixes #82 URL: #82
- Loading branch information
Franklin Hu
committed
Jul 24, 2012
1 parent
baaea73
commit 58c3851
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|