Skip to content

Commit

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

diff --git a/Changes b/Changes
index 8e955bd..746bfaa 100644
--- a/Changes
+++ b/Changes
@@ -2,11 +2,14 @@ Revision history for Perl extension Server::Starter.

 {{$NEXT}}

+0.34 2018-02-26T06:32:16Z
+	- run start_server even if no port (or path) is specified (thanks to Ichito Nagata) #49
+	- add `.` in @inc (thanks to Petr Písař) #47
+
 0.33 2016-12-13T00:37:49Z
 	- do not kill old worker too early (thanks to Xuanzhong Wei) #45
 	- allow use of `--enable-auto-restart` without an argument (thanks to Slaven Rezic) #41

-
 0.32 2015-08-25T02:09:18Z
 	- fix compatibility issue on Solaris (thanks to Syohei YOSHIDA) #40
  • Loading branch information
kazuho committed Feb 26, 2018
1 parent 9dc77b2 commit 296ee4e
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use strict;
use warnings;
use utf8;

BEGIN { push @INC, '.'; }
BEGIN { push @INC, '.' }
use builder::MyBuilder;
use File::Basename;
use File::Spec;
Expand Down
5 changes: 4 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@ Revision history for Perl extension Server::Starter.

{{$NEXT}}

0.34 2018-02-26T06:32:16Z
- run start_server even if no port (or path) is specified (thanks to Ichito Nagata) #49
- add `.` in @INC (thanks to Petr Písař) #47

0.33 2016-12-13T00:37:49Z
- do not kill old worker too early (thanks to Xuanzhong Wei) #45
- allow use of `--enable-auto-restart` without an argument (thanks to Slaven Rezic) #41


0.32 2015-08-25T02:09:18Z
- fix compatibility issue on Solaris (thanks to Syohei YOSHIDA) #40

Expand Down
36 changes: 19 additions & 17 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Kazuho Oku"
],
"dynamic_config" : 0,
"generated_by" : "Minilla/v3.0.6, CPAN::Meta::Converter version 2.150005",
"generated_by" : "Minilla/v3.0.16, CPAN::Meta::Converter version 2.150005",
"license" : [
"perl_5"
],
Expand Down Expand Up @@ -67,29 +67,31 @@
"web" : "https://github.com/kazuho/p5-Server-Starter"
}
},
"version" : "0.33",
"version" : "0.34",
"x_contributors" : [
"kazuho <kazuho@d0d07461-0603-4401-acd4-de1884942a52>",
"yappo <yappo@d0d07461-0603-4401-acd4-de1884942a52>",
"Robert Buels <rmb32@cornell.edu>",
"chromatic <chromatic@wgz.org>",
"Alexandr Ciornii <alexchorny@gmail.com>",
"Andy Jones <andy@broadbean.com>",
"Arthur Axel 'fREW' Schmidt <frioux@gmail.com>",
"Bugdebugger <bugdebugger@users.noreply.github.com>",
"Chia-liang Kao <clkao@clkao.org>",
"Masahiro Nagano <kazeburo@gmail.com>",
"Tomoya Kabe <kabe.tomoya@O-02586-MAC.local>",
"Haruka Iwao <haruka@fout.jp>",
"Kazuho Oku <kazuho@natadeco.co>",
"Ichito Nagata <i.nagata110@gmail.com>",
"Karen Etheridge <ether@cpan.org>",
"Bugdebugger <bugdebugger@users.noreply.github.com>",
"Kazuho Oku <kazuho@natadeco.co>",
"Kazuho Oku <kazuhooku@gmail.com>",
"Masahiro Nagano <kazeburo@gmail.com>",
"Mikhail Ivanov <m.ivanych@gmail.com>",
"Petr Písař <ppisar@redhat.com>",
"Robert Buels <rmb32@cornell.edu>",
"Slaven Rezic <slaven.rezic@idealo.de>",
"Syohei YOSHIDA <syohex@gmail.com>",
"Tatsuhiko Miyagawa <miyagawa@bulknews.net>",
"Alexandr Ciornii <alexchorny@gmail.com>",
"Tokuhiro Matsuno <tokuhirom@gmail.com>",
"Andy Jones <andy@broadbean.com>",
"Arthur Axel 'fREW' Schmidt <frioux@gmail.com>",
"Syohei YOSHIDA <syohex@gmail.com>",
"Slaven Rezic <slaven.rezic@idealo.de>",
"Mikhail Ivanov <m.ivanych@gmail.com>",
"Tomoya Kabe <kabe.tomoya@O-02586-MAC.local>",
"Xuanzhong Wei <azrlew@gmail.com>",
"Kazuho Oku <kazuhooku@gmail.com>"
"chromatic <chromatic@wgz.org>",
"kazuho <kazuho@d0d07461-0603-4401-acd4-de1884942a52>",
"yappo <yappo@d0d07461-0603-4401-acd4-de1884942a52>"
],
"x_serialization_backend" : "JSON::PP version 2.27300"
}
2 changes: 1 addition & 1 deletion lib/Server/Starter.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use Fcntl qw(:flock);

use Exporter qw(import);

our $VERSION = '0.33';
our $VERSION = '0.34';
our @EXPORT_OK = qw(start_server restart_server stop_server server_ports);

my @signals_received;
Expand Down

0 comments on commit 296ee4e

Please sign in to comment.