]> git.vpit.fr Git - perl/modules/Lexical-Types.git/commitdiff
This is 0.16 master v0.16
authorVincent Pit <perl@profvince.com>
Sat, 4 Nov 2017 17:15:02 +0000 (18:15 +0100)
committerVincent Pit <perl@profvince.com>
Sat, 4 Nov 2017 17:15:02 +0000 (18:15 +0100)
Changes
META.json
META.yml
README
lib/Lexical/Types.pm

diff --git a/Changes b/Changes
index bb8433fffa551ded445456d249b5fb696dbf9165..6508ff2f06dc7a2893970cdfb78e4ff2acfc9444 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Lexical-Types
 
+0.16    2017-11-04 17:15 UTC
+        + Fix : Test failures on perl 5.27.5 and above.
+
 0.15    2015-12-21 15:30 UTC
         + Chg : The new environment variable to enable thread tests on older
                 perls is PERL_FORCE_TEST_THREADS. Note that this variable
index 6f495c4ba3e1baef767805eebbc89412d2925731..28aedde1b3b9de8cc373ecf90942a1a6569eac7f 100644 (file)
--- a/META.json
+++ b/META.json
@@ -4,13 +4,13 @@
       "Vincent Pit <perl@profvince.com>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 2.150005",
+   "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 2.150010",
    "license" : [
       "perl_5"
    ],
    "meta-spec" : {
       "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
-      "version" : "2"
+      "version" : 2
    },
    "name" : "Lexical-Types",
    "no_index" : {
@@ -25,6 +25,7 @@
             "Carp" : "0",
             "Config" : "0",
             "ExtUtils::MakeMaker" : "0",
+            "File::Spec" : "0",
             "Test::More" : "0",
             "XSLoader" : "0",
             "constant" : "0",
@@ -58,6 +59,6 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FLexical-Types.git"
       }
    },
-   "version" : "0.15",
-   "x_serialization_backend" : "JSON::PP version 2.27300"
+   "version" : "0.16",
+   "x_serialization_backend" : "JSON::PP version 2.94"
 }
index 54bf463b105ecf7885b8c939eb3517d6bf093827..5c8cc72b84d7bcd6005e045ce5b70ce69713df7c 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -6,6 +6,7 @@ build_requires:
   Carp: '0'
   Config: '0'
   ExtUtils::MakeMaker: '0'
+  File::Spec: '0'
   Test::More: '0'
   XSLoader: '0'
   constant: '0'
@@ -14,7 +15,7 @@ configure_requires:
   Config: '0'
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 2.150005'
+generated_by: 'ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -33,5 +34,5 @@ resources:
   homepage: http://search.cpan.org/dist/Lexical-Types/
   license: http://dev.perl.org/licenses/
   repository: http://git.profvince.com/?p=perl%2Fmodules%2FLexical-Types.git
-version: '0.15'
+version: '0.16'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/README b/README
index 3b9f97dc819bc42c300ac86a968d1d26f5a068a1..a2df39d391f3860d18744f023532b1d8f9172bd9 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Lexical::Types - Extend the semantics of typed lexicals.
 
 VERSION
-    Version 0.15
+    Version 0.16
 
 SYNOPSIS
         { package Str; }
@@ -254,8 +254,8 @@ ACKNOWLEDGEMENTS
     Thanks Florian Ragwitz for suggesting the use of constants for types.
 
 COPYRIGHT & LICENSE
-    Copyright 2009,2010,2011,2012,2013,2014,2015 Vincent Pit, all rights
-    reserved.
+    Copyright 2009,2010,2011,2012,2013,2014,2015,2017 Vincent Pit, all
+    rights reserved.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.
index cf49dd5a90c3573c354cfe3af47d2fb608fd8c34..3b5691a33660fb41f4cae4a41f46bed663b26d90 100644 (file)
@@ -11,13 +11,13 @@ Lexical::Types - Extend the semantics of typed lexicals.
 
 =head1 VERSION
 
-Version 0.15
+Version 0.16
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.15';
+ $VERSION = '0.16';
 }
 
 =head1 SYNOPSIS