Skip to content

Commit

Permalink
Bump version to 1.17 for release to CPAN
Browse files Browse the repository at this point in the history
  • Loading branch information
toddr committed Nov 11, 2022
1 parent 2d9712c commit 57ef78b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ IO::Tty - Low-level allocate a pseudo-Tty, import constants.

# VERSION

1.16
1.17

# SYNOPSIS

Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ $^W=1;

my %define;
my @libs;
my $Package_Version = '1.16'; # keep this consistent with Tty.pm
my $Package_Version = '1.17'; # keep this consistent with Tty.pm
my $Is_Beta = ($Package_Version =~ m/_/);

open(SUB, ">xssubs.c") or die "open: $!";
Expand Down
4 changes: 2 additions & 2 deletions Pty.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require POSIX;

use vars qw(@ISA $VERSION);

$VERSION = '1.16'; # keep same as in Tty.pm
$VERSION = '1.17'; # keep same as in Tty.pm

@ISA = qw(IO::Handle);
eval { local $^W = 0; undef local $SIG{__DIE__}; require IO::Stty };
Expand Down Expand Up @@ -158,7 +158,7 @@ IO::Pty - Pseudo TTY object class
=head1 VERSION
1.16
1.17
=head1 SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ NAME
IO::Tty - Low-level allocate a pseudo-Tty, import constants.

VERSION
1.16
1.17

SYNOPSIS
use IO::Tty qw(TIOCNOTTY);
Expand Down
6 changes: 3 additions & 3 deletions Tty.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ require DynaLoader;

use vars qw(@ISA $VERSION $XS_VERSION $CONFIG $DEBUG);

$VERSION = '1.16';
$XS_VERSION = "1.16";
$VERSION = '1.17';
$XS_VERSION = "1.17";
@ISA = qw(IO::Handle);

eval { local $^W = 0; undef local $SIG{__DIE__}; require IO::Stty };
Expand Down Expand Up @@ -122,7 +122,7 @@ IO::Tty - Low-level allocate a pseudo-Tty, import constants.
=head1 VERSION
1.16
1.17
=head1 SYNOPSIS
Expand Down

0 comments on commit 57ef78b

Please sign in to comment.