Skip to content

Commit e6ccfff

Browse files
committed
Increment to v0.09.
1 parent 9cd68a0 commit e6ccfff

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Revision history for Perl extension Text::WordDiff.
22

3+
0.09
4+
35
0.08 2011-10-19T22:08:34Z
46
- Control and punctuation characters are now treated as standalone
57
chunks rather than as part of the words the preceed them. This makes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Text/WordDiff version 0.08
1+
Text/WordDiff version 0.09
22
==========================
33

44
This library's module, Text::WordDiff, is a variation on the lovely

lib/Text/WordDiff.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Algorithm::Diff ();
66
use IO::File;
77
use Carp;
88

9-
$VERSION = '0.08';
9+
$VERSION = '0.09';
1010

1111
# _Mastering Regular Expressions_, p. 132.
1212
my $BEGIN_WORD = $] >= 5.006

lib/Text/WordDiff/ANSIColor.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use vars qw($VERSION @ISA);
77
# Term::ANSIColor doesn't support STRIKETHROUGH, so we'll do it ourselves.
88
use constant STRIKETHROUGH => "\e[9m";
99

10-
$VERSION = '0.08';
10+
$VERSION = '0.09';
1111
@ISA = qw(Text::WordDiff::Base);
1212

1313
sub same_items {

lib/Text/WordDiff/HTML.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use HTML::Entities qw(encode_entities);
55
use vars qw($VERSION @ISA);
66

7-
$VERSION = '0.08';
7+
$VERSION = '0.09';
88
@ISA = qw(Text::WordDiff::Base);
99

1010
sub file_header {

lib/Text/WordDiff/HTMLTwoLines.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use HTML::Entities qw(encode_entities);
55
use vars qw($VERSION @ISA);
66

7-
$VERSION = '0.08';
7+
$VERSION = '0.09';
88
@ISA = qw(Text::WordDiff::Base);
99

1010
sub file_header {

0 commit comments

Comments
 (0)