[Bps-public-commit] HTTP-Server-Simple branch, master, updated. 0.50-6-g8f87256
? sunnavy
sunnavy at bestpractical.com
Wed Sep 16 09:49:45 EDT 2015
The branch, master has been updated
via 8f87256f960911ed8e882f4ac457beb4032f6b45 (commit)
via 772953fa78c28ff6d5881508bdac0ad8a29e86ba (commit)
from a50ae6c28e4b2f73992e7d55f3634dab44259b1c (commit)
Summary of changes:
Changes | 7 +++++++
META.yml | 3 ++-
lib/HTTP/Server/Simple.pm | 2 +-
t/01live.t | 2 +-
4 files changed, 11 insertions(+), 3 deletions(-)
- Log -----------------------------------------------------------------
commit 772953fa78c28ff6d5881508bdac0ad8a29e86ba
Author: sunnavy <sunnavy at bestpractical.com>
Date: Wed Sep 16 21:36:15 2015 +0800
don't bother runing IPv6 tests if Socket::getaddrinfo returns error
diff --git a/t/01live.t b/t/01live.t
index 69891c4..0875b5b 100644
--- a/t/01live.t
+++ b/t/01live.t
@@ -12,7 +12,7 @@ my $RUN_IPV6 = eval {
my $ipv6_host = get_localhost(AF_INET6);
socket my $sockh, Socket::PF_INET6(), SOCK_STREAM, 0 or die "Cannot socket(PF_INET6) - $!";
my ($err, @res) = Socket::getaddrinfo($ipv6_host, $PORT, { family => AF_INET6, socktype => SOCK_STREAM } );
- diag $err if $err;
+ die $err if $err;
for my $r (@res) {
next unless ($r->{'family'} == AF_INET6);
bind $sockh, $r->{'addr'} or die "Cannot bind - $!";
commit 8f87256f960911ed8e882f4ac457beb4032f6b45
Author: sunnavy <sunnavy at bestpractical.com>
Date: Wed Sep 16 21:41:22 2015 +0800
bump version to 0.51
diff --git a/Changes b/Changes
index ea75c36..7aa234a 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,10 @@
+0.51 2015-09-16
+
+ - add OPTIONS as a valid method
+ - better compatibility with CGI.pm < 3.36
+ - fix tests for freebsd and IPv6
+ - repository info
+
0.50 2015-02-02
- All collected changes since 0.44
diff --git a/META.yml b/META.yml
index 8e84e78..5d6fb51 100644
--- a/META.yml
+++ b/META.yml
@@ -25,4 +25,5 @@ requires:
Test::More: 0
resources:
license: http://dev.perl.org/licenses/
-version: '0.50'
+ repository: https://github.com/bestpractical/http-server-simple
+version: '0.51'
diff --git a/lib/HTTP/Server/Simple.pm b/lib/HTTP/Server/Simple.pm
index b905872..8278445 100644
--- a/lib/HTTP/Server/Simple.pm
+++ b/lib/HTTP/Server/Simple.pm
@@ -7,7 +7,7 @@ use Socket;
use Carp;
use vars qw($VERSION $bad_request_doc);
-$VERSION = '0.50';
+$VERSION = '0.51';
=head1 NAME
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list