Skip to content

Commit

Permalink
bump version for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
gray committed Mar 4, 2015
1 parent 4b91380 commit fbaf146
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Revision history for Tree-Suffix

0.22 Wed Mar 4 00:32:38 UTC 2015
- Added non-maintaining notice.
- Added Devel::CheckLib to configure_requires, instead of bundling it.
RT #91418, #102498
- Silence some compiler warnings.

0.21 Wed Sep 2 19:12:48 UTC 2009
- Used Devel::CheckLib
- Updated ppport.h.
Expand Down
17 changes: 8 additions & 9 deletions lib/Tree/Suffix.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,13 @@ package Tree::Suffix;
use strict;
use warnings;

our $VERSION = '0.21';
use XSLoader;

our $VERSION = '0.22';
our $XS_VERSION = $VERSION;
$VERSION = eval $VERSION;

eval {
require XSLoader;
XSLoader::load(__PACKAGE__, $VERSION);
1;
} or do {
require DynaLoader;
DynaLoader::bootstrap(__PACKAGE__, $VERSION);
};
XSLoader::load(__PACKAGE__, $XS_VERSION);

1;

Expand Down Expand Up @@ -66,6 +62,9 @@ Tree::Suffix - Perl interface to the libstree library.
The C<Tree::Suffix> module provides an interface to the C library libstree,
which implements generic suffix trees.
NOTICE: as libstree has outstanding bugs and has long been abandoned, this
distribution is not being maintained.
=head1 METHODS
=over
Expand Down

0 comments on commit fbaf146

Please sign in to comment.