Skip to content

Commit

Permalink
prepare v0.07
Browse files Browse the repository at this point in the history
  • Loading branch information
patch committed May 14, 2014
1 parent a92b42c commit e7eeb7b
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions Changes
@@ -1,5 +1,11 @@
Revision history for Perl module Lingua::Stem::UniNE

0.07 2014-05-14
- Remove support for Perl v5.19.4 through v5.19.11 due to Perl core regex bug
fixed in RT#121778 [issue #6]
- Integrate Travis CI, Devel::Cover, and Coveralls with GitHub repo
[issue #8], [issue #9]

0.06 2014-02-14
- Fixed fatal interpolation bug in Perl ≤5.16.x [issue #5]

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -8,7 +8,7 @@ Lingua::Stem::UniNE - University of Neuchâtel stemmers

# VERSION

This document describes Lingua::Stem::UniNE v0.06.
This document describes Lingua::Stem::UniNE v0.07.

# SYNOPSIS

Expand Down
4 changes: 2 additions & 2 deletions lib/Lingua/Stem/UniNE.pm
Expand Up @@ -7,7 +7,7 @@ use Carp;
use Moo;
use namespace::clean;

our $VERSION = '0.06';
our $VERSION = '0.07';

my @languages = qw( bg cs de fa );
my @aggressive = qw( cs de );
Expand Down Expand Up @@ -74,7 +74,7 @@ Lingua::Stem::UniNE - University of Neuchâtel stemmers
=head1 VERSION
This document describes Lingua::Stem::UniNE v0.06.
This document describes Lingua::Stem::UniNE v0.07.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Lingua/Stem/UniNE/BG.pm
Expand Up @@ -8,7 +8,7 @@ use parent 'Exporter';
use Unicode::CaseFold qw( fc );
use Unicode::Normalize qw( NFC );

our $VERSION = '0.06';
our $VERSION = '0.07';
our @EXPORT_OK = qw( stem stem_bg );

*stem_bg = \&stem;
Expand Down Expand Up @@ -124,7 +124,7 @@ Lingua::Stem::UniNE::BG - Bulgarian stemmer
=head1 VERSION
This document describes Lingua::Stem::UniNE::BG v0.06.
This document describes Lingua::Stem::UniNE::BG v0.07.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Lingua/Stem/UniNE/CS.pm
Expand Up @@ -8,7 +8,7 @@ use parent 'Exporter';
use Unicode::CaseFold qw( fc );
use Unicode::Normalize qw( NFC );

our $VERSION = '0.06';
our $VERSION = '0.07';
our @EXPORT_OK = qw( stem stem_cs stem_aggressive stem_cs_aggressive );

*stem_cs = \&stem;
Expand Down Expand Up @@ -314,7 +314,7 @@ Lingua::Stem::UniNE::CS - Czech stemmer
=head1 VERSION
This document describes Lingua::Stem::UniNE::CS v0.06.
This document describes Lingua::Stem::UniNE::CS v0.07.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Lingua/Stem/UniNE/DE.pm
Expand Up @@ -8,7 +8,7 @@ use parent 'Exporter';
use Unicode::CaseFold qw( fc );
use Unicode::Normalize qw( NFC );

our $VERSION = '0.06';
our $VERSION = '0.07';
our @EXPORT_OK = qw( stem stem_de stem_aggressive stem_de_aggressive );

*stem_de = \&stem;
Expand Down Expand Up @@ -138,7 +138,7 @@ Lingua::Stem::UniNE::DE - German stemmer
=head1 VERSION
This document describes Lingua::Stem::UniNE::DE v0.06.
This document describes Lingua::Stem::UniNE::DE v0.07.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Lingua/Stem/UniNE/FA.pm
Expand Up @@ -9,7 +9,7 @@ use parent 'Exporter';
use Unicode::CaseFold qw( fc );
use Unicode::Normalize qw( NFC );

our $VERSION = '0.06';
our $VERSION = '0.07';
our @EXPORT_OK = qw( stem stem_fa );

*stem_fa = \&stem;
Expand Down Expand Up @@ -101,7 +101,7 @@ Lingua::Stem::UniNE::FA - Persian stemmer
=head1 VERSION
This document describes Lingua::Stem::UniNE::FA v0.06.
This document describes Lingua::Stem::UniNE::FA v0.07.
=head1 SYNOPSIS
Expand Down

0 comments on commit e7eeb7b

Please sign in to comment.