Skip to content

Commit 9fa9e17

Browse files
the postderef feature is now considered stable
1 parent 30a46b5 commit 9fa9e17

18 files changed

+36
-18
lines changed

lib/JSON/Schema/Tiny.pm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ package JSON::Schema::Tiny;
77
our $VERSION = '0.022';
88

99
use 5.020; # for unicode_strings, signatures, postderef features
10-
use experimental 0.026 qw(signatures postderef args_array_with_signatures);
10+
use stable 0.031 'postderef';
11+
use experimental 0.026 qw(signatures args_array_with_signatures);
1112
no if "$]" >= 5.031009, feature => 'indirect';
1213
no if "$]" >= 5.033001, feature => 'multidimensional';
1314
no if "$]" >= 5.033006, feature => 'bareword_filehandles';

t/additional-tests-draft2019-09.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# vim: set ft=perl ts=8 sts=2 sw=2 tw=100 et :
22
use strictures 2;
33
use 5.020;
4-
use experimental qw(signatures postderef);
4+
use stable 0.031 'postderef';
5+
use experimental 'signatures';
56
no if "$]" >= 5.031009, feature => 'indirect';
67
no if "$]" >= 5.033001, feature => 'multidimensional';
78
no if "$]" >= 5.033006, feature => 'bareword_filehandles';

t/additional-tests-draft2020-12.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# vim: set ft=perl ts=8 sts=2 sw=2 tw=100 et :
22
use strictures 2;
33
use 5.020;
4-
use experimental qw(signatures postderef);
4+
use stable 0.031 'postderef';
5+
use experimental 'signatures';
56
no if "$]" >= 5.031009, feature => 'indirect';
67
no if "$]" >= 5.033001, feature => 'multidimensional';
78
no if "$]" >= 5.033006, feature => 'bareword_filehandles';

t/additional-tests-draft7.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# vim: set ft=perl ts=8 sts=2 sw=2 tw=100 et :
22
use strictures 2;
33
use 5.020;
4-
use experimental qw(signatures postderef);
4+
use stable 0.031 'postderef';
5+
use experimental 'signatures';
56
no if "$]" >= 5.031009, feature => 'indirect';
67
no if "$]" >= 5.033001, feature => 'multidimensional';
78
no if "$]" >= 5.033006, feature => 'bareword_filehandles';

t/boolean-data.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use strictures 2;
22
use 5.020;
3-
use experimental qw(signatures postderef);
3+
use stable 0.031 'postderef';
4+
use experimental 'signatures';
45
no if "$]" >= 5.031009, feature => 'indirect';
56
no if "$]" >= 5.033001, feature => 'multidimensional';
67
no if "$]" >= 5.033006, feature => 'bareword_filehandles';

t/boolean-schemas.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use strictures 2;
22
use 5.020;
3-
use experimental qw(signatures postderef);
3+
use stable 0.031 'postderef';
4+
use experimental 'signatures';
45
no if "$]" >= 5.031009, feature => 'indirect';
56
no if "$]" >= 5.033001, feature => 'multidimensional';
67
no if "$]" >= 5.033006, feature => 'bareword_filehandles';

t/equality.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use strictures 2;
22
use 5.020;
3-
use experimental qw(signatures postderef);
3+
use stable 0.031 'postderef';
4+
use experimental 'signatures';
45
no if "$]" >= 5.031009, feature => 'indirect';
56
no if "$]" >= 5.033001, feature => 'multidimensional';
67
no if "$]" >= 5.033006, feature => 'bareword_filehandles';

t/errors.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use strictures 2;
22
use 5.020;
3-
use experimental qw(signatures postderef);
3+
use stable 0.031 'postderef';
4+
use experimental 'signatures';
45
no if "$]" >= 5.031009, feature => 'indirect';
56
no if "$]" >= 5.033001, feature => 'multidimensional';
67
no if "$]" >= 5.033006, feature => 'bareword_filehandles';

t/lib/Acceptance.pm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ use strictures 2;
22
# no package, so things defined here appear in the namespace of the parent.
33

44
use 5.020;
5-
use experimental qw(signatures postderef);
5+
use stable 0.031 'postderef';
6+
use experimental 'signatures';
67
no if "$]" >= 5.031009, feature => 'indirect';
78
no if "$]" >= 5.033001, feature => 'multidimensional';
89
no if "$]" >= 5.033006, feature => 'bareword_filehandles';

t/max_traversal_depth.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use strictures 2;
22
use 5.020;
3-
use experimental qw(signatures postderef);
3+
use stable 0.031 'postderef';
4+
use experimental 'signatures';
45
no if "$]" >= 5.031009, feature => 'indirect';
56
no if "$]" >= 5.033001, feature => 'multidimensional';
67
no if "$]" >= 5.033006, feature => 'bareword_filehandles';

0 commit comments

Comments
 (0)