From fbe35dd11cc180a55c31e246ad0e711577ba78f9 Mon Sep 17 00:00:00 2001 From: Songmu Date: Tue, 26 Mar 2019 13:09:17 +0900 Subject: [PATCH] Checking in changes prior to tagging of version 0.9991. 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 --- .travis.yml | 3 +++ Changes | 6 ++++++ META.json | 4 ++-- README.md | 2 +- lib/Devel/KYTProf.pm | 2 +- minil.toml | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 74feff0..19e2dd5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/Changes b/Changes index 489e5b5..cbebe9f 100644 --- a/Changes +++ b/Changes @@ -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) diff --git a/META.json b/META.json index faff72e..b2776f4 100644 --- a/META.json +++ b/META.json @@ -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 ", "FUJIWARA Shunichiro ", "Kentaro Kuribayashi ", - "Songmu ", + "Masayuki Matsuki ", "Wakaba ", "Yasuhiro Onishi ", "cho45 ", diff --git a/README.md b/README.md index 2758bc6..d95246e 100644 --- a/README.md +++ b/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 diff --git a/lib/Devel/KYTProf.pm b/lib/Devel/KYTProf.pm index bf483a9..09eb6be 100644 --- a/lib/Devel/KYTProf.pm +++ b/lib/Devel/KYTProf.pm @@ -2,7 +2,7 @@ package Devel::KYTProf; use strict; use warnings; -our $VERSION = '0.05'; +our $VERSION = '0.9991'; use Class::Data::Lite ( rw => { diff --git a/minil.toml b/minil.toml index fc95de2..b7c9c74 100644 --- a/minil.toml +++ b/minil.toml @@ -1,5 +1,5 @@ name = "Devel-KYTProf" authority = "cpan:ONISHI" -badges = ["travis"] +badges = ["travis", "coveralls"] markdown_maker = "Pod::Markdown::Github"