Skip to content

Commit

Permalink
prepare v0.05
Browse files Browse the repository at this point in the history
  • Loading branch information
patch committed Feb 14, 2014
1 parent 33bb15e commit 1c4a9c7
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 17 deletions.
12 changes: 11 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
Revision history for Perl module Lingua::Stem::UniNE

v0.05 2014-02-13
- Added aggressive attribute which defaults to false [github #1]
- Added light and aggressive German (de) stemmers
- Added aggressive Czech (cs) stemmer
- Modified light Czech (cs) stemmer to also remove -ete -eti
- Restored Unicode case folding and normalization because they’re required for
proper stemming using the current regular expressions
- Removed in-place stemming of arrayrefs in favor
Lingua::Stem::Any->stem_in_place

v0.04 2013-04-26
- Moved Unicode casefolding and normalization out of Lingua::Stem::UniNE and
- Moved Unicode case folding and normalization out of Lingua::Stem::UniNE and
into Lingua::Stem::Any
- Deprecated in-place stemming of arrayrefs, which will be removed in a future
release, in favor of the stem_in_place method of Lingua::Stem::Any
Expand Down
5 changes: 0 additions & 5 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,3 @@ t/bg.t
t/cs.t
t/de.t
t/fa.t
xt/author/changes.t
xt/author/kwalitee.t
xt/author/pod-coverage.t
xt/author/pod.t
xt/author/spelling.t
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Lingua::Stem::UniNE - University of Neuchâtel stemmers

# VERSION

This document describes Lingua::Stem::UniNE v0.04\_1.
This document describes Lingua::Stem::UniNE v0.05.

# SYNOPSIS

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

our $VERSION = '0.04_1';
our $VERSION = '0.05';

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.04_1.
This document describes Lingua::Stem::UniNE v0.05.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Lingua/Stem/UniNE/BG.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use parent 'Exporter';
use Unicode::CaseFold qw( fc );
use Unicode::Normalize qw( NFC );

our $VERSION = '0.04_1';
our $VERSION = '0.05';
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.04_1.
This document describes Lingua::Stem::UniNE::BG v0.05.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Lingua/Stem/UniNE/CS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use parent 'Exporter';
use Unicode::CaseFold qw( fc );
use Unicode::Normalize qw( NFC );

our $VERSION = '0.04_1';
our $VERSION = '0.05';
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.04_1.
This document describes Lingua::Stem::UniNE::CS v0.05.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Lingua/Stem/UniNE/DE.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use parent 'Exporter';
use Unicode::CaseFold qw( fc );
use Unicode::Normalize qw( NFC );

our $VERSION = '0.04_1';
our $VERSION = '0.05';
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.04_1.
This document describes Lingua::Stem::UniNE::DE v0.05.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Lingua/Stem/UniNE/FA.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use parent 'Exporter';
use Unicode::CaseFold qw( fc );
use Unicode::Normalize qw( NFC );

our $VERSION = '0.04_1';
our $VERSION = '0.05';
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.04_1.
This document describes Lingua::Stem::UniNE::FA v0.05.
=head1 SYNOPSIS
Expand Down

0 comments on commit 1c4a9c7

Please sign in to comment.