Skip to content

Commit

Permalink
Wrap up for release of 0.13
Browse files Browse the repository at this point in the history
and in doing so, also fix RT#85165. Now the code should be correctly
recognized as having a Perl5 license.
  • Loading branch information
cosimo committed Jan 26, 2014
1 parent 38d0055 commit f742410
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 76 deletions.
9 changes: 9 additions & 0 deletions Changes
@@ -1,6 +1,15 @@
NAME NAME
Net::Statsd::Server::Changes - Change history for Net::Statsd::Server Net::Statsd::Server::Changes - Change history for Net::Statsd::Server


Changes in Net::Statsd::Server 0.13 26th January 2014
Added support for Perl 5.8, so now Net::Statsd::Server should
in theory work on 5.8 too, thanks to RJBS for the related patch.
RJBS also reported N::S::S to work on Solaris.

Fixed RT#85165, now the code is indicated as Perl_5 licence.
Problem there was my failed understanding of the interaction
between hardcoded Makefile.PL and dzil.

Changes in Net::Statsd::Server 0.12 16th December 2013 Changes in Net::Statsd::Server 0.12 16th December 2013
Fixed (hopefully) problems reported by CPAN testers: Fixed (hopefully) problems reported by CPAN testers:
* Failing to setsockopt(SO_RCVBUF) is no more a fatal exception. * Failing to setsockopt(SO_RCVBUF) is no more a fatal exception.
Expand Down
29 changes: 0 additions & 29 deletions MANIFEST

This file was deleted.

2 changes: 2 additions & 0 deletions MANIFEST.SKIP
Expand Up @@ -2,6 +2,8 @@
bin/benchmarkConfig\.js bin/benchmarkConfig\.js
bin/debugConfig\.js bin/debugConfig\.js
bin/profiles bin/profiles
bin/output\.txt.*
bin/parse\.pl
t-statsd t-statsd
blib blib
pm_to_blib pm_to_blib
Expand Down
15 changes: 0 additions & 15 deletions Makefile.PL

This file was deleted.

27 changes: 0 additions & 27 deletions README

This file was deleted.

6 changes: 3 additions & 3 deletions dist.ini
Expand Up @@ -2,9 +2,9 @@ name = Net-Statsd-Server
author = Cosimo Streppone <cosimo@cpan.org> author = Cosimo Streppone <cosimo@cpan.org>
license = Perl_5 license = Perl_5
copyright_holder = Cosimo Streppone copyright_holder = Cosimo Streppone
copyright_year = 2013 copyright_year = 2014


version = 0.12 version = 0.13


[@Basic] [@Basic]
[PkgVersion] [PkgVersion]
Expand All @@ -18,7 +18,7 @@ repository.url = git://github.com/cosimo/perl5-net-statsd-server.git
repository.web = http://github.com/cosimo/perl5-net-statsd-server repository.web = http://github.com/cosimo/perl5-net-statsd-server
repository.type = git repository.type = git


[PodWeaver] ;[PodWeaver]


;[NoTabsTests] ;[NoTabsTests]
;[EOLTests] ;[EOLTests]
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Statsd/Server.pm
Expand Up @@ -32,7 +32,7 @@ use constant {
RECEIVE_BUFFER_MB => 8, # 0 = setsockopt disabled RECEIVE_BUFFER_MB => 8, # 0 = setsockopt disabled
}; };


our $VERSION = '0.12'; our $VERSION = '0.13';
our $logger; our $logger;


# }}} # }}}
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Statsd/Server/Backend/Graphite.pm
@@ -1,5 +1,5 @@
# #
# Flush stats to graphite (http://graphite.wikidot.com/). # ABSTRACT: Flushes stats to graphite (http://graphite.wikidot.com/).
# #
# To enable this backend, include 'graphite' in the backends # To enable this backend, include 'graphite' in the backends
# configuration array: # configuration array:
Expand Down
10 changes: 10 additions & 0 deletions lib/Net/Statsd/Server/Changes.pod
Expand Up @@ -2,6 +2,16 @@


Net::Statsd::Server::Changes - Change history for Net::Statsd::Server Net::Statsd::Server::Changes - Change history for Net::Statsd::Server


=head2 Changes in Net::Statsd::Server 0.13 26th January 2014

Added support for Perl 5.8, so now Net::Statsd::Server should
in theory work on 5.8 too, thanks to RJBS for the related patch.
RJBS also reported N::S::S to work on Solaris.

Fixed RT#85165, now the code is indicated as Perl_5 licence.
Problem there was my failed understanding of the interaction
between hardcoded Makefile.PL and dzil.

=head2 Changes in Net::Statsd::Server 0.12 16th December 2013 =head2 Changes in Net::Statsd::Server 0.12 16th December 2013


Fixed (hopefully) problems reported by CPAN testers: Fixed (hopefully) problems reported by CPAN testers:
Expand Down

0 comments on commit f742410

Please sign in to comment.