Subject: | documentation error: exclusion symbol in strings [PATCH] |
There is an error in the documentation: In a string parsed by add_string_requirement,
the symbol for exclusion should be "!=", not "!". CPAN::Meta::Spec has "!=" and that is
what is implemented here, too.
-Martin
Subject: | CPAN-Meta-Requirements.patch |
--- CPAN-Meta-Requirements-2.121.orig/lib/CPAN/Meta/Requirements.pm 2012-04-01 15:05:19.000000000 +0200
+++ CPAN-Meta-Requirements-2.121/lib/CPAN/Meta/Requirements.pm 2012-05-02 22:50:24.000000000 +0200
@@ -663,13 +663,13 @@
=item == 1.3
-=item ! 1.3
+=item != 1.3
=item > 1.3
=item < 1.3
-=item >= 1.3, ! 1.5, <= 2.0
+=item >= 1.3, != 1.5, <= 2.0
A version number without an operator is equivalent to specifying a minimum
(C<E<gt>=>). Extra whitespace is allowed.