Skip to content

Commit

Permalink
Accept spelling changes from the Debian Perl Group
Browse files Browse the repository at this point in the history
  • Loading branch information
ronsavage committed Nov 8, 2013
1 parent 3fad621 commit 2cb38b5
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 10 deletions.
14 changes: 11 additions & 3 deletions Changelog.ini
Expand Up @@ -3,6 +3,14 @@ Name=Tree::Simple
Changelog.Creator=Module::Metadata::Changes V 2.05
Changelog.Parser=Config::IniFiles V 2.78

[V 1.23]
Date=2013-11-09T10:43:00
Comments= <<EOT
- No code changes.
- Accept spelling corrections from the Debian Perl Group, with thanx. See RT#90171.
Note: The change to lib/Tree/Simple/Visitor.pm had already been made.
EOT

[V 1.22]
Date=2013-09-30T08:35:00
Comments=- Metadata fixes in Build.PL and correct bugtracker queue in Makefile.PL. Thanx to dsteinbrunner (via github).
Expand Down Expand Up @@ -207,7 +215,7 @@ sense. It made more sense for removeChild to accept
both $child and an $index, and do the right thing
based upon which one was given. This of course
is how it works anyway since I maintained backwards
compatability. But take note, removeChildAt($index)
compatibility. But take note, removeChildAt($index)
will not be supported. The method is still there,
but it will very soon go away.
I think this is a cleaner way to do this in the end.
Expand All @@ -220,9 +228,9 @@ Comments= <<EOT
- removeChild($index) is now removeChildAt($index)
and removeChild($child) has replaced it. See the
documentation for more info.
- backwards compatability maintained under change.
- backwards compatibility maintained under change.
- new tests written to test the new code and to
test the backwards compatability
test the backwards compatibility
- Test suite is not at 99% coverage (with 415 tests)
- Moved object initialization code from Tree::Simple::Visitor::new
to Tree::Simple::Visitor::_init. This keeps in line with the
Expand Down
11 changes: 8 additions & 3 deletions Changes
@@ -1,5 +1,10 @@
Revision history for Perl extension Tree::Simple.

1.23 Sat Nov 9 10:43:00 2013
- No code changes.
- Accept spelling corrections from the Debian Perl Group, with thanx. See RT#90171.
Note: The change to lib/Tree/Simple/Visitor.pm had already been made.

1.22 Mon Sep 30 08:35:00 2013
- Metadata fixes in Build.PL and correct bugtracker queue in Makefile.PL. Thanx to dsteinbrunner (via github).

Expand Down Expand Up @@ -148,7 +153,7 @@ Revision history for Perl extension Tree::Simple.
both $child and an $index, and do the right thing
based upon which one was given. This of course
is how it works anyway since I maintained backwards
compatability. But take note, removeChildAt($index)
compatibility. But take note, removeChildAt($index)
will not be supported. The method is still there,
but it will very soon go away.
I think this is a cleaner way to do this in the end.
Expand All @@ -158,9 +163,9 @@ Revision history for Perl extension Tree::Simple.
- removeChild($index) is now removeChildAt($index)
and removeChild($child) has replaced it. See the
documentation for more info.
- backwards compatability maintained under change.
- backwards compatibility maintained under change.
- new tests written to test the new code and to
test the backwards compatability
test the backwards compatibility
- Test suite is not at 99% coverage (with 415 tests)
- Moved object initialization code from Tree::Simple::Visitor::new
to Tree::Simple::Visitor::_init. This keeps in line with the
Expand Down
2 changes: 1 addition & 1 deletion lib/Tree/Simple.pm
Expand Up @@ -3,7 +3,7 @@ package Tree::Simple;
use strict;
use warnings;

our $VERSION = '1.22';
our $VERSION = '1.23';

use Scalar::Util qw(blessed);

Expand Down
2 changes: 1 addition & 1 deletion lib/Tree/Simple/Visitor.pm
Expand Up @@ -3,7 +3,7 @@ package Tree::Simple::Visitor;
use strict;
use warnings;

our $VERSION = '1.22';
our $VERSION = '1.23';

use Scalar::Util qw(blessed);

Expand Down
2 changes: 1 addition & 1 deletion t/10_Tree_Simple_test.t
Expand Up @@ -799,7 +799,7 @@ cmp_ok($tree_to_remove2->getDepth(), '==', -1, '... the depth should be -1');
cmp_ok($sub_tree_of_tree_to_remove2->getDepth(), '==', 0, '... the depth should be 0');

## ----------------------------------------------------------------------------
## test removeChild backwards compatability
## test removeChild backwards compatibility
## ----------------------------------------------------------------------------

# make a node to remove
Expand Down
2 changes: 1 addition & 1 deletion t/20_Tree_Simple_Visitor_test.t
Expand Up @@ -76,7 +76,7 @@ throws_ok {

# -----------------------------------------------
# test the old style interface for backwards
# compatability
# compatibility
# -----------------------------------------------

# and that our RECURSIVE constant is properly defined
Expand Down

0 comments on commit 2cb38b5

Please sign in to comment.