Skip to content
This repository has been archived by the owner on Mar 8, 2021. It is now read-only.

Commit

Permalink
Release v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jpinkham committed Mar 28, 2015
1 parent e610896 commit df1af7c
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 31 deletions.
3 changes: 2 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ v1.0.1 2013-12-09
v1.0.2 2013-12-12
Updated to be backwards compatible with Perl v5.8.x.
v1.0.3 2015-03-21
Updated 'negative sample rate' tests. Cleaned up documentation.
Updated 'negative sample rate' tests. Increased test coverage.
Cleaned up documentation.
8 changes: 4 additions & 4 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"Jennifer Pinkham <jpinkham@cpan.org>"
],
"dynamic_config" : 1,
"generated_by" : "Module::Build version 0.4003, CPAN::Meta::Converter version 2.120921",
"generated_by" : "Module::Build version 0.421",
"license" : [
"open_source"
"gpl_3"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
Expand Down Expand Up @@ -42,7 +42,7 @@
"provides" : {
"Net::Dogstatsd" : {
"file" : "lib/Net/Dogstatsd.pm",
"version" : "v1.0.2"
"version" : "v1.0.3"
}
},
"release_status" : "stable",
Expand All @@ -58,5 +58,5 @@
"url" : "https://github.com/jpinkham/net-dogstatsd"
}
},
"version" : "v1.0.2"
"version" : "v1.0.3"
}
34 changes: 17 additions & 17 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,34 @@ abstract: "Perl client to Datadog's dogstatsd metrics collector."
author:
- 'Jennifer Pinkham <jpinkham@cpan.org>'
build_requires:
Scalar::Util: 0
Storable: 0
Test::FailWarnings: 0
Test::Most: 0
Scalar::Util: '0'
Storable: '0'
Test::FailWarnings: '0'
Test::Most: '0'
configure_requires:
Module::Build: 0
Module::Build: '0'
dynamic_config: 1
generated_by: 'Module::Build version 0.4003, CPAN::Meta::Converter version 2.120921'
license: open_source
generated_by: 'Module::Build version 0.421, CPAN::Meta::Converter version 2.142060'
license: gpl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
version: '1.4'
name: Net-Dogstatsd
provides:
Net::Dogstatsd:
file: lib/Net/Dogstatsd.pm
version: v1.0.2
version: v1.0.3
requires:
Carp: 0
Data::Dumper: 0
Data::Validate::Type: 0
LWP::UserAgent: 0
Net::Telnet: 0
Try::Tiny: 0
perl: 5.006
Carp: '0'
Data::Dumper: '0'
Data::Validate::Type: '0'
LWP::UserAgent: '0'
Net::Telnet: '0'
Try::Tiny: '0'
perl: '5.006'
resources:
bugtracker: https://github.com/jpinkham/net-dogstatsd/issues
homepage: https://metacpan.org/release/Net-Dogstatsd
license: http://www.gnu.org/licenses/gpl-3.0.txt
repository: https://github.com/jpinkham/net-dogstatsd
version: v1.0.2
version: v1.0.3
18 changes: 9 additions & 9 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# Note: this file was auto-generated by Module::Build::Compat version 0.4003
# Note: this file was auto-generated by Module::Build::Compat version 0.4210
require 5.006;
use ExtUtils::MakeMaker;
WriteMakefile
(
'NAME' => 'Net::Dogstatsd',
'VERSION_FROM' => 'lib/Net/Dogstatsd.pm',
'PREREQ_PM' => {
'Carp' => 0,
'Data::Dumper' => 0,
'Test::FailWarnings' => 0,
'Data::Validate::Type' => 0,
'LWP::UserAgent' => 0,
'Net::Telnet' => 0,
'Try::Tiny' => 0,
'Scalar::Util' => 0,
'Storable' => 0,
'Test::FailWarnings' => 0,
'Test::Most' => 0,
'Try::Tiny' => 0
'Net::Telnet' => 0,
'Carp' => 0,
'Storable' => 0,
'Data::Dumper' => 0
},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [],
'PL_FILES' => {},
'VERSION_FROM' => 'lib/Net/Dogstatsd.pm',
'NAME' => 'Net::Dogstatsd',
'test' => {
'TESTS' => 't/*.t'
}
Expand Down

0 comments on commit df1af7c

Please sign in to comment.