-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ee38d0
commit 55d2a87
Showing
4 changed files
with
20 additions
and
4 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 |
---|---|---|
@@ -1,3 +1,15 @@ | ||
# 0.2.12 | ||
# 0.2.13 | ||
|
||
* Eliminate one loop over the stack by using `overall_samples` [#98] | ||
* Remove /ext from .gitignore | ||
* update gemfile | ||
* Add ruby 2.5 to CI targets | ||
* comment some of the inner workings | ||
* feature: add --json format | ||
* Add test coverage around the string branch in result writing | ||
* Flip conditional to use duck typing | ||
* Allow Pathname objects for Stackprof :out | ||
* Fix a compilation error and a compilation warning | ||
* Add `--alphabetical-flamegraph` for population-based instead of timeline | ||
* Add `--d3-flamegraph` to output html using d3-flame-graph | ||
* Avoid JSON::NestingError when processing deep stacks | ||
* Use docker for CI |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
stackprof (0.2.12) | ||
stackprof (0.2.13) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
|
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 |
---|---|---|
@@ -1,4 +1,8 @@ | ||
require "stackprof/stackprof" | ||
|
||
module StackProf | ||
VERSION = '0.2.13' | ||
end | ||
|
||
StackProf.autoload :Report, "stackprof/report.rb" | ||
StackProf.autoload :Middleware, "stackprof/middleware.rb" |
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