Skip to content

Commit

Permalink
Update Changelog and bump to 1.20 for release to CPAN
Browse files Browse the repository at this point in the history
  • Loading branch information
toddr committed Dec 28, 2023
1 parent 15b122c commit 1643f88
Show file tree
Hide file tree
Showing 6 changed files with 12 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.19
1.20

# SYNOPSIS

Expand Down
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.20 2023-12-28 Todd Rinaldo <[email protected]>
* #32 - Skip t/pty_get_winsize.t tests on AIX
* #27 - Fix patchlevel check for util.h

1.19 2023-12-28 Todd Rinaldo <[email protected]>
* #37 - Remove --no-undefined from compiler test which is not compatible with all platforms.

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.19'; # keep this consistent with Tty.pm
my $Package_Version = '1.20'; # 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.19'; # keep same as in Tty.pm
$VERSION = '1.20'; # 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.19
1.20
=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.19
1.20

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.19';
$XS_VERSION = "1.19";
$VERSION = '1.20';
$XS_VERSION = "1.20";
@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.19
1.20
=head1 SYNOPSIS
Expand Down

0 comments on commit 1643f88

Please sign in to comment.