Skip to content

Commit ad31962

Browse files
committed
bump version for release
- Sync versions of XML::SAX, XML::SAX::ParserFactory and XML::SAX::PurePerl and add a test to ensure they stay synced.
1 parent 95afbf9 commit ad31962

File tree

5 files changed

+23
-3
lines changed

5 files changed

+23
-3
lines changed

Changes

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Revision history for Perl extension XML::SAX.
22

3+
1.02 14 Jun 2019 Grant McLean
4+
- Spelling fixes (patch from Ville Skyttä)
5+
- Add repo location to metadata (patches from Ville Skyttä & Martin McGrath)
6+
- Reorganise module files under lib/XML
7+
- Regenerate MANIFEST using 'make manifest' to include missing test files
8+
39
1.00 15 Feb 2018 Grant McLean
410
- Add makefile dependency to fix order of build steps RT#62289 (patch from
511
Ed J)

lib/XML/SAX.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package XML::SAX;
55
use strict;
66
use vars qw($VERSION @ISA @EXPORT_OK);
77

8-
$VERSION = '1.00';
8+
$VERSION = '1.02';
99

1010
use Exporter ();
1111
@ISA = ('Exporter');

lib/XML/SAX/ParserFactory.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package XML::SAX::ParserFactory;
55
use strict;
66
use vars qw($VERSION);
77

8-
$VERSION = '1.01';
8+
$VERSION = '1.02';
99

1010
use Symbol qw(gensym);
1111
use XML::SAX;

lib/XML/SAX/PurePerl.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package XML::SAX::PurePerl;
55
use strict;
66
use vars qw/$VERSION/;
77

8-
$VERSION = '1.00';
8+
$VERSION = '1.02';
99

1010
use XML::SAX::PurePerl::Productions qw($NameChar $SingleChar);
1111
use XML::SAX::PurePerl::Reader;

t/95versions.t

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
use Test::More;
2+
3+
use XML::SAX;
4+
use XML::SAX::ParserFactory;
5+
use XML::SAX::PurePerl;
6+
7+
my $dist_version = $XML::SAX::VERSION;
8+
9+
ok(defined($dist_version), 'XML::SAX version');
10+
is($XML::SAX::ParserFactory::VERSION, $dist_version, 'XML::SAX::ParserFactory version');
11+
is($XML::SAX::PurePerl::VERSION, $dist_version, 'XML::SAX::PurePerl version');
12+
13+
done_testing();
14+

0 commit comments

Comments
 (0)