From: Vincent Pit Date: Wed, 24 Aug 2011 16:27:57 +0000 (+0200) Subject: This is 0.12 X-Git-Tag: v0.12^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=commitdiff_plain;h=005b1303d3fd36462b38b097f8c4f5abc7aa8369 This is 0.12 --- diff --git a/Changes b/Changes index 33b88c1..a9b4f5f 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ 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 diff --git a/META.json b/META.json index 02407bc..7e7e675 100644 --- a/META.json +++ b/META.json @@ -55,5 +55,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FLexical-Types.git" } }, - "version" : "0.11" + "version" : "0.12" } diff --git a/META.yml b/META.yml index 99b00be..439a611 100644 --- 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: - - Vincent Pit -license: perl -distribution_type: module -configure_requires: - ExtUtils::MakeMaker: 0 + - 'Vincent Pit ' 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: - Carp: 0 - perl: 5.008003 - XSLoader: 0 + Carp: 0 + XSLoader: 0 + perl: 5.008003 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 e76671a..919e0af 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Lexical::Types - Extend the semantics of typed lexicals. VERSION - Version 0.11 + Version 0.12 SYNOPSIS { package Str; } diff --git a/lib/Lexical/Types.pm b/lib/Lexical/Types.pm index 725204b..ae17a75 100644 --- a/lib/Lexical/Types.pm +++ b/lib/Lexical/Types.pm @@ -11,13 +11,13 @@ Lexical::Types - Extend the semantics of typed lexicals. =head1 VERSION -Version 0.11 +Version 0.12 =cut our $VERSION; BEGIN { - $VERSION = '0.11'; + $VERSION = '0.12'; } =head1 SYNOPSIS