The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 17
META.yml 11
inc/Module/Install/Authority.pm 11
lib/Catalyst/Devel.pm 11
lib/Catalyst/Helper.pm 11
share/lib/Helper/compclass.pm.tt 03
share/lib/MyApp/Controller/Root.pm.tt 02
share/lib/MyApp.pm.tt 01
share/t/comptest.tt 11
9 files changed (This is a version diff) 618
@@ -1,6 +1,12 @@
 This file documents the revision history for Perl extension Catalyst-Devel.
 
-1.38 2012-04-11 20:54:00
+1.39 2013-06-14 12:44:17
+        - Write =encoding utf8 into generated Pod files so that things
+          work as expected for people with utf-8 characters in their unix
+          username as returned by getpwuid (RT#84613)
+        - Fix unbalanced parenthesis in comptest.tt (RT#85661)
+
+1.38 2013-04-11 20:54:00
         - Remove all PAR based deployment options, as they're unsupported
           and don't even pretend to work on 5.9 RT#83936
 
@@ -43,5 +43,5 @@ resources:
   homepage: http://dev.catalyst.perl.org/
   license: http://dev.perl.org/licenses/
   repository: git://git.shadowcat.co.uk/catagits/Catalyst-Devel.git
-version: 1.38
+version: 1.39
 x_authority: cpan:MSTROUT
@@ -4,7 +4,7 @@ use strict;
 use warnings;
 use base qw/Module::Install::Base/;
 
-our $VERSION = '0.02';
+our $VERSION = '0.03';
 $VERSION = eval $VERSION;
 
 sub authority {
@@ -4,7 +4,7 @@ use strict;
 use warnings;
 
 # Change Catalyst::Helper also.
-our $VERSION             = '1.38';
+our $VERSION             = '1.39';
 our $CATALYST_SCRIPT_GEN = 40;
 
 $VERSION = eval $VERSION;
@@ -19,7 +19,7 @@ use namespace::autoclean;
 with 'MooseX::Emulate::Class::Accessor::Fast';
 
 # Change Catalyst/Devel.pm also
-our $VERSION = '1.38';
+our $VERSION = '1.39';
 
 my %cache;
 
@@ -28,6 +28,9 @@ sub index :Path :Args(0) {
 }
 
 [% END %]
+
+=encoding utf8
+
 =head1 AUTHOR
 
 [%author%]
@@ -10,6 +10,8 @@ BEGIN { extends 'Catalyst::Controller' }
 #
 __PACKAGE__->config(namespace => '');
 
+=encoding utf-8
+
 =head1 NAME
 
 [% rootname %] - Root Controller for [% name %]
@@ -45,6 +45,7 @@ __PACKAGE__->config(
 # Start the application
 __PACKAGE__->setup();
 
+=encoding utf8
 
 =head1 NAME
 
@@ -8,7 +8,7 @@ unless (eval q{use Test::WWW::Mechanize::Catalyst 0.55; 1}) {
     exit 0;
 }
 
-ok( my $mech = Test::WWW::Mechanize::Catalyst->new(catalyst_app => '[% app %]', 'Created mech object' );
+ok( my $mech = Test::WWW::Mechanize::Catalyst->new(catalyst_app => '[% app %]'), 'Created mech object' );
 
 $mech->get_ok( 'http://localhost[% uri %]' );
 [%- ELSE %]