Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.9991.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 155507d..cbebe9f 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,8 @@
 Revision history for Perl extension Devel::KYTProf

 {{$NEXT}}
+
+0.9991 2019-03-26T04:09:02Z
         - add sampler feature and use it for more accurate profiling for DBI
         - introduce Class::Data::Lite and drop Class::Data::Inheritance
         - add `apply_prof` method and call them in `import` method
  • Loading branch information
Songmu committed Mar 26, 2019
1 parent e071452 commit fbe35dd
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Expand Up @@ -5,4 +5,7 @@ perl:
before_install:
- sudo apt-get update -qq
- bash author/travis_install_mysql.sh
- cpanm -n Devel::Cover::Report::Coveralls
install: cpanm -nq --with-develop --installdeps .
script:
perl Build.PL && ./Build build && cover -test -report coveralls
6 changes: 6 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,12 @@ Revision history for Perl extension Devel::KYTProf

{{$NEXT}}

0.9991 2019-03-26T04:09:02Z
- add sampler feature and use it for more accurate profiling for DBI
- introduce Class::Data::Lite and drop Class::Data::Inheritance
- add `apply_prof` method and call them in `import` method
- switch from UNIVERSAL::require to Module::Load

0.05 Wed Jul 10 19:13:07 JST 2013
- Added compatibility code for 'add_prof' version <= 0.02 (fujiwara)

Expand Down
4 changes: 2 additions & 2 deletions META.json
Expand Up @@ -74,13 +74,13 @@
"web" : "https://github.com/onishi/perl5-devel-kytprof"
}
},
"version" : "0.05",
"version" : "0.9991",
"x_authority" : "cpan:ONISHI",
"x_contributors" : [
"Atsushi Kobayashi <nekokak@gmail.com>",
"FUJIWARA Shunichiro <fujiwara.shunichiro@gmail.com>",
"Kentaro Kuribayashi <kentarok@gmail.com>",
"Songmu <y.songmu@gmail.com>",
"Masayuki Matsuki <y.songmu@gmail.com>",
"Wakaba <wakabatan@hatena.ne.jp>",
"Yasuhiro Onishi <onishi@hatena.ne.jp>",
"cho45 <cho45@lowreal.net>",
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/onishi/perl5-devel-kytprof.svg?branch=master)](https://travis-ci.org/onishi/perl5-devel-kytprof)
[![Build Status](https://travis-ci.org/onishi/perl5-devel-kytprof.svg?branch=master)](https://travis-ci.org/onishi/perl5-devel-kytprof) [![Coverage Status](https://img.shields.io/coveralls/onishi/perl5-devel-kytprof/master.svg?style=flat)](https://coveralls.io/r/onishi/perl5-devel-kytprof?branch=master)
# NAME

Devel::KYTProf - Simple profiler
Expand Down
2 changes: 1 addition & 1 deletion lib/Devel/KYTProf.pm
Expand Up @@ -2,7 +2,7 @@ package Devel::KYTProf;
use strict;
use warnings;

our $VERSION = '0.05';
our $VERSION = '0.9991';

use Class::Data::Lite (
rw => {
Expand Down
2 changes: 1 addition & 1 deletion minil.toml
@@ -1,5 +1,5 @@
name = "Devel-KYTProf"
authority = "cpan:ONISHI"
badges = ["travis"]
badges = ["travis", "coveralls"]

markdown_maker = "Pod::Markdown::Github"

0 comments on commit fbe35dd

Please sign in to comment.