]> git.vpit.fr Git - perl/modules/Lexical-Types.git/commitdiff
This is 0.12 v0.12
authorVincent Pit <vince@profvince.com>
Wed, 24 Aug 2011 16:27:57 +0000 (18:27 +0200)
committerVincent Pit <vince@profvince.com>
Wed, 24 Aug 2011 16:27:57 +0000 (18:27 +0200)
Changes
META.json
META.yml
README
lib/Lexical/Types.pm

diff --git a/Changes b/Changes
index 33b88c17ca137dc6958176450ea32820aef57cf7..a9b4f5feaeba3fb302974655e9a8b7afe9f27a5b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Lexical-Types
 
 Revision history for Lexical-Types
 
+0.12    2011-08-24 16:30 UTC
+        + Fix : The pragma no longer vivifies the "Lexical::Types" entry in the
+                hints hash %^H on perl 5.8.
+
 0.11    2011-02-26 22:00 UTC
         + Fix : [RT #66164] : Lexical::Types hangs with PPI.
                 This was actually a regression introduced together with the new
 0.11    2011-02-26 22:00 UTC
         + Fix : [RT #66164] : Lexical::Types hangs with PPI.
                 This was actually a regression introduced together with the new
index 02407bc5bfcc07e3ec4cde7730173ab778217538..7e7e67566e4eaa9981b91889c4ff6e26f3fb6b99 100644 (file)
--- a/META.json
+++ b/META.json
@@ -55,5 +55,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FLexical-Types.git"
       }
    },
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FLexical-Types.git"
       }
    },
-   "version" : "0.11"
+   "version" : "0.12"
 }
 }
index 99b00becdd5dc9280825693cb0a1928d23e6356c..439a6119dcdba881a08763866562c3ecad1e36dd 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,34 +1,33 @@
---- #YAML:1.0
-name:               Lexical-Types
-version:            0.11
-abstract:           Extend the semantics of typed lexicals.
+---
+abstract: 'Extend the semantics of typed lexicals.'
 author:
 author:
-    - Vincent Pit <perl@profvince.com>
-license:            perl
-distribution_type:  module
-configure_requires:
-    ExtUtils::MakeMaker:  0
+  - 'Vincent Pit <perl@profvince.com>'
 build_requires:
 build_requires:
-    Carp:                 0
-    constant:             0
-    ExtUtils::MakeMaker:  0
-    Test::More:           0
-    XSLoader:             0
+  Carp: 0
+  ExtUtils::MakeMaker: 0
+  Test::More: 0
+  XSLoader: 0
+  constant: 0
+configure_requires:
+  ExtUtils::MakeMaker: 0
+dynamic_config: 1
+generated_by: 'ExtUtils::MakeMaker version 6.59, CPAN::Meta::Converter version 2.112150'
+license: perl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: Lexical-Types
+no_index:
+  directory:
+    - t
+    - inc
 requires:
 requires:
-    Carp:      0
-    perl:      5.008003
-    XSLoader:  0
+  Carp: 0
+  XSLoader: 0
+  perl: 5.008003
 resources:
 resources:
-    bugtracker:  http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Lexical-Types
-    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
-no_index:
-    directory:
-        - t
-        - inc
-generated_by:       ExtUtils::MakeMaker version 6.56
-meta-spec:
-    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
-    version:  1.4
-dynamic_config:     1
+  bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Lexical-Types
+  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.12
diff --git a/README b/README
index e76671a45965afc7fab59a456e623ee5ef8eead7..919e0afe5d8cda6269335e27e72deae4b9c87fbf 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Lexical::Types - Extend the semantics of typed lexicals.
 
 VERSION
     Lexical::Types - Extend the semantics of typed lexicals.
 
 VERSION
-    Version 0.11
+    Version 0.12
 
 SYNOPSIS
         { package Str; }
 
 SYNOPSIS
         { package Str; }
index 725204bedc6bf68d048317b0e2542b99a248512d..ae17a75cd15980b6fdf9a532273b8cbab133d9ad 100644 (file)
@@ -11,13 +11,13 @@ Lexical::Types - Extend the semantics of typed lexicals.
 
 =head1 VERSION
 
 
 =head1 VERSION
 
-Version 0.11
+Version 0.12
 
 =cut
 
 our $VERSION;
 BEGIN {
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.11';
+ $VERSION = '0.12';
 }
 
 =head1 SYNOPSIS
 }
 
 =head1 SYNOPSIS