Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bump version for release.
  • Loading branch information
rcaputo committed Jul 12, 2014
1 parent d68983d commit a4fb23c
Show file tree
Hide file tree
Showing 48 changed files with 48 additions and 48 deletions.
2 changes: 1 addition & 1 deletion README
@@ -1,4 +1,4 @@
Version 1.362
Version 1.363

--------------------
Detailed Information
Expand Down
2 changes: 1 addition & 1 deletion lib/POE.pm
Expand Up @@ -6,7 +6,7 @@ use strict;
use Carp qw( croak );

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use POE::Resource::Clock qw( monotime time walltime sleep mono2wall wall2mono );

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Component.pm
Expand Up @@ -5,7 +5,7 @@ package POE::Component;
use strict;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

1;

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Component/Client/TCP.pm
Expand Up @@ -3,7 +3,7 @@ package POE::Component::Client::TCP;
use strict;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use Carp qw(carp croak);
use Errno qw(ETIMEDOUT ECONNRESET);
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Component/Server/TCP.pm
Expand Up @@ -3,7 +3,7 @@ package POE::Component::Server::TCP;
use strict;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use Carp qw(carp croak);
use Socket qw(INADDR_ANY inet_ntoa inet_aton AF_INET AF_UNIX PF_UNIX);
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Driver.pm
Expand Up @@ -3,7 +3,7 @@ package POE::Driver;
use strict;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use Carp qw(croak);

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Driver/SysRW.pm
Expand Up @@ -7,7 +7,7 @@ package POE::Driver::SysRW;
use strict;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use Errno qw(EAGAIN EWOULDBLOCK);
use Carp qw(croak);
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Filter.pm
Expand Up @@ -3,7 +3,7 @@ package POE::Filter;
use strict;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use Carp qw(croak);

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Filter/Block.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use POE::Filter;

use vars qw($VERSION @ISA);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)
@ISA = qw(POE::Filter);

use Carp qw(croak);
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Filter/Grep.pm
Expand Up @@ -6,7 +6,7 @@ use strict;
use POE::Filter;

use vars qw($VERSION @ISA);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)
@ISA = qw(POE::Filter);

use Carp qw(croak carp);
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Filter/HTTPD.pm
Expand Up @@ -13,7 +13,7 @@ use strict;
use POE::Filter;

use vars qw($VERSION @ISA);
$VERSION = '1.362';
$VERSION = '1.363';
# NOTE - Should be #.### (three decimal places)
@ISA = qw(POE::Filter);

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Filter/Line.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use POE::Filter;

use vars qw($VERSION @ISA);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)
@ISA = qw(POE::Filter);

use Carp qw(carp croak);
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Filter/Map.pm
Expand Up @@ -6,7 +6,7 @@ use strict;
use POE::Filter;

use vars qw($VERSION @ISA);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)
@ISA = qw(POE::Filter);

use Carp qw(croak carp);
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Filter/RecordBlock.pm
Expand Up @@ -6,7 +6,7 @@ use strict;
use POE::Filter;

use vars qw($VERSION @ISA);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)
@ISA = qw(POE::Filter);

use Carp qw(croak);
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Filter/Reference.pm
Expand Up @@ -7,7 +7,7 @@ use strict;
use POE::Filter;

use vars qw($VERSION @ISA);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)
@ISA = qw(POE::Filter);

use Carp qw(carp croak confess);
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Filter/Stackable.pm
Expand Up @@ -12,7 +12,7 @@ use strict;
use POE::Filter;

use vars qw($VERSION @ISA);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)
@ISA = qw(POE::Filter);

use Carp qw(croak);
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Filter/Stream.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use POE::Filter;

use vars qw($VERSION @ISA);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)
@ISA = qw(POE::Filter);

#------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Kernel.pm
Expand Up @@ -3,7 +3,7 @@ package POE::Kernel;
use strict;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use POE::Resource::Clock qw( monotime sleep mono2wall wall2mono walltime time );

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Loop.pm
Expand Up @@ -3,7 +3,7 @@ package POE::Loop;
use strict;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

1;

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Loop/IO_Poll.pm
Expand Up @@ -6,7 +6,7 @@
package POE::Loop::IO_Poll;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

# Include common signal handling.
use POE::Loop::PerlSignals;
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Loop/PerlSignals.pm
Expand Up @@ -8,7 +8,7 @@ package POE::Loop::PerlSignals;
use strict;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

# Everything plugs into POE::Kernel.
package POE::Kernel;
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Loop/Select.pm
Expand Up @@ -9,7 +9,7 @@ use strict;
use POE::Loop::PerlSignals;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

=for poe_tests
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/NFA.pm
Expand Up @@ -3,7 +3,7 @@ package POE::NFA;
use strict;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use Carp qw(carp croak);

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Pipe.pm
Expand Up @@ -6,7 +6,7 @@ use warnings;
use strict;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use IO::Pipely;

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Pipe/OneWay.pm
Expand Up @@ -8,7 +8,7 @@ use strict;
use base qw( POE::Pipe );

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use IO::Pipely qw(pipely);

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Pipe/TwoWay.pm
Expand Up @@ -8,7 +8,7 @@ use strict;
use base qw( POE::Pipe );

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use IO::Pipely qw(socketpairly);

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Queue.pm
@@ -1,7 +1,7 @@
package POE::Queue;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use Carp qw(croak);

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Queue/Array.pm
Expand Up @@ -5,7 +5,7 @@ package POE::Queue::Array;
use strict;

use vars qw($VERSION @ISA);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)
@ISA = qw(POE::Queue);

use Errno qw(ESRCH EPERM);
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Resource.pm
@@ -1,7 +1,7 @@
package POE::Resource;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

1;

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Resource/Aliases.pm
Expand Up @@ -4,7 +4,7 @@
package POE::Resource::Aliases;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

# These methods are folded into POE::Kernel;
package POE::Kernel;
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Resource/Clock.pm
Expand Up @@ -3,7 +3,7 @@
package POE::Resource::Clock;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use strict;

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Resource/Events.pm
Expand Up @@ -3,7 +3,7 @@
package POE::Resource::Events;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

# These methods are folded into POE::Kernel;
package POE::Kernel;
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Resource/Extrefs.pm
Expand Up @@ -5,7 +5,7 @@
package POE::Resource::Extrefs;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

# These methods are folded into POE::Kernel;
package POE::Kernel;
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Resource/FileHandles.pm
Expand Up @@ -4,7 +4,7 @@
package POE::Resource::FileHandles;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

# These methods are folded into POE::Kernel;
package POE::Kernel;
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Resource/SIDs.pm
Expand Up @@ -4,7 +4,7 @@
package POE::Resource::SIDs;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

# These methods are folded into POE::Kernel;
package POE::Kernel;
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Resource/Sessions.pm
Expand Up @@ -3,7 +3,7 @@
package POE::Resource::Sessions;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

# These methods are folded into POE::Kernel;
package POE::Kernel;
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Resource/Signals.pm
Expand Up @@ -4,7 +4,7 @@
package POE::Resource::Signals;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

# These methods are folded into POE::Kernel;
package POE::Kernel;
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Resources.pm
Expand Up @@ -3,7 +3,7 @@ package POE::Resources;
use strict;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

my @resources = qw(
POE::XS::Resource::Aliases
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Session.pm
Expand Up @@ -3,7 +3,7 @@ package POE::Session;
use strict;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use Carp qw(carp croak);
use Errno;
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Wheel.pm
Expand Up @@ -3,7 +3,7 @@ package POE::Wheel;
use strict;

use vars qw($VERSION);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use Carp qw(croak);

Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Wheel/Curses.pm
Expand Up @@ -5,7 +5,7 @@ package POE::Wheel::Curses;
use strict;

use vars qw($VERSION @ISA);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use Carp qw(croak);
use Curses qw(
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Wheel/FollowTail.pm
Expand Up @@ -3,7 +3,7 @@ package POE::Wheel::FollowTail;
use strict;

use vars qw($VERSION @ISA);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use Carp qw( croak carp );
use Symbol qw( gensym );
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Wheel/ListenAccept.pm
Expand Up @@ -3,7 +3,7 @@ package POE::Wheel::ListenAccept;
use strict;

use vars qw($VERSION @ISA);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use Carp qw( croak carp );
use Symbol qw( gensym );
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Wheel/ReadLine.pm
Expand Up @@ -5,7 +5,7 @@ use strict;
BEGIN { eval { require bytes } and bytes->import; }

use vars qw($VERSION @ISA);
$VERSION = '1.362'; # NOTE - Should be #.### (three decimal places)
$VERSION = '1.363'; # NOTE - Should be #.### (three decimal places)

use Carp qw( croak carp );
use Symbol qw(gensym);
Expand Down

0 comments on commit a4fb23c

Please sign in to comment.