Skip to content

Commit

Permalink
Prep 0.2.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Oct 1, 2019
1 parent 0ee38d0 commit 55d2a87
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
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
2 changes: 1 addition & 1 deletion Gemfile.lock
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/
Expand Down
4 changes: 4 additions & 0 deletions lib/stackprof.rb
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"
2 changes: 1 addition & 1 deletion stackprof.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'stackprof'
s.version = '0.2.12'
s.version = '0.2.13'
s.homepage = 'http://github.com/tmm1/stackprof'

s.authors = 'Aman Gupta'
Expand Down

0 comments on commit 55d2a87

Please sign in to comment.