Skip to content

Commit

Permalink
Version bump to v0.80 to require Inline::C version 0.80 for better ba…
Browse files Browse the repository at this point in the history
…ckward compatibility. Release commit.
  • Loading branch information
David Oswald committed Apr 19, 2019
1 parent 813db0c commit 78f0e0c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions Changes
@@ -1,5 +1,9 @@
Revision history for Perl extension Inline::CPP.

0.80
- Bump minimum Inline::C version to 0.80 for better backward compatibility.
- Bump minimum Inline version to 0.82.

0.79
- Whitespace cleanup in POD.
- support Perl 5.8.1
Expand Down
6 changes: 3 additions & 3 deletions Makefile.PL
Expand Up @@ -4,13 +4,13 @@ use strict;

# The next line is verified via t/13version_numbers.t. Retain single quoting.

my $DIST_VERSION = '0.75'; # DRY in Makefile.PL.
my $DIST_VERSION = '0.80'; # DRY in Makefile.PL.

my $CPP_Config_path = 'lib/Inline/CPP/Config.pm';

my %PREREQ_PM = (
'Inline' => '0.78',
'Inline::C' => '0.78_003', # supports 5.8.1
'Inline' => '0.82',
'Inline::C' => '0.80', # supports 5.8.1
'Parse::RecDescent' => '0',
'Carp' => '0',
'Config' => '0',
Expand Down
2 changes: 1 addition & 1 deletion README
Expand Up @@ -43,7 +43,7 @@ variation for your specific C++ compiler,

*** DISABLE HARNESS_OPTIONS=j9 ***

If you have the HARNESS_OPTIONS environment variable set to run tests
If you have the HARNESS_OPTIONS environment variable set to run tests
concurrently in multiple processes, the test suite will attempt to invoke
the C++ compiler multiple times concurrently. Recent versions of Inline and
Inline::C have made progress on stamping out race conditions, but YMMV for now.
Expand Down
2 changes: 1 addition & 1 deletion lib/Inline/CPP.pm
Expand Up @@ -19,7 +19,7 @@ our @ISA = qw( Inline::C ); ## no critic (ISA)
# Development releases will have a _0xx version suffix.
# We eval the version number to accommodate dev. version numbering, as
# described in perldoc perlmodstyle.
our $VERSION = '0.79';
our $VERSION = '0.80';
# $VERSION = eval $VERSION; ## no critic (eval)

my $TYPEMAP_KIND;
Expand Down
2 changes: 1 addition & 1 deletion lib/Inline/CPP/Parser/RecDescent.pm
Expand Up @@ -4,7 +4,7 @@ package Inline::CPP::Parser::RecDescent;
# Dev versions will have a _0xx suffix.
# We eval the $VERSION to accommodate dev version numbering as described in
# perldoc perlmodstyle
our $VERSION = '0.79';
our $VERSION = '0.80';
#$VERSION = eval $VERSION; ## no critic (eval)

use Carp;
Expand Down

0 comments on commit 78f0e0c

Please sign in to comment.