diff --git a/Array-Diff-0.08.tar.gz b/Array-Diff-0.08.tar.gz deleted file mode 100644 index 2a4ae57..0000000 --- a/Array-Diff-0.08.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1ee55e2f5ae7ddfb623bf4ad5c3e051d3d0790274ab50fdc9c7da28e125f251b -size 11196 diff --git a/Array-Diff-0.09.tar.gz b/Array-Diff-0.09.tar.gz new file mode 100644 index 0000000..ccac485 --- /dev/null +++ b/Array-Diff-0.09.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8006392e9861e741537c2bbc9116c8e42b962f2e07e8d641a2ff6a11c6445077 +size 11335 diff --git a/perl-Array-Diff.changes b/perl-Array-Diff.changes index a4230a0..5e28fb2 100644 --- a/perl-Array-Diff.changes +++ b/perl-Array-Diff.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Mon May 13 05:02:35 UTC 2019 - Stephan Kulow + +- updated to 0.09 + see /usr/share/doc/packages/perl-Array-Diff/Changes + + 0.09 2019-05-10 NEILB + - Set minimum Perl version in metadata. PR from MANWAR. + - Clarified in the doc that the arrays must be sorted. RT#39184 + ------------------------------------------------------------------- Thu May 9 05:02:31 UTC 2019 - Stephan Kulow diff --git a/perl-Array-Diff.spec b/perl-Array-Diff.spec index d31df84..5fa03cc 100644 --- a/perl-Array-Diff.spec +++ b/perl-Array-Diff.spec @@ -17,7 +17,7 @@ Name: perl-Array-Diff -Version: 0.08 +Version: 0.09 Release: 0 %define cpan_name Array-Diff Summary: Find the differences between two arrays @@ -37,8 +37,11 @@ Requires: perl(Class::Accessor::Fast) %{perl_requires} %description -This module compares two arrays and returns the added or deleted elements -in two separate arrays. It's a simple wrapper around Algorithm::Diff. +This module compares two *pre-sorted* arrays and returns the added or +deleted elements in two separate arrays. It's a simple wrapper around +Algorithm::Diff. + +*Note*: the arrays must be sorted before you call 'diff'. And if you need more complex array tools, check Array::Compare.