Bump version and update Changes
[gruntmaster-data.git] / lib / Gruntmaster / App / Command / Show.pm
index fbdac50cd9b15f7ac2a4fc7b361842036e7d020c..e62aa1c436a139cd1c55ae0f59c8a84c9586b181 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Show;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_004';
+our $VERSION = '5999.000_014';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
@@ -35,7 +35,7 @@ sub show_contest {
        my (%columns) = @_;
        $columns{$_} = strftime '%c', localtime $columns{$_} for qw/start stop/;
 
-       print <<END
+       print <<"END"
 Name: $columns{name}
 Owner: $columns{owner}
 Start: $columns{start}
@@ -48,7 +48,7 @@ sub show_job {
        $columns{date} = strftime '%c', localtime $columns{date};
 
        no warnings 'uninitialized';
-       print <<END
+       print <<"END"
 Problem: $columns{problem}
 Contest: $columns{contest}
 Owner: $columns{owner}
@@ -63,7 +63,7 @@ sub show_problem {
        my (%columns) = @_;
 
        no warnings 'uninitialized';
-       print <<END
+       print <<"END"
 Name: $columns{name}
 Author: $columns{author}
 Statement written by: $columns{writer}
@@ -86,7 +86,7 @@ sub show_user {
        $columns{since} = strftime '%c', localtime $columns{since};
 
        no warnings 'uninitialized';
-       print <<END
+       print <<"END"
 Email: $columns{name} <$columns{email}>
 Phone: $columns{phone}
 Since: $columns{since}
@@ -129,7 +129,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2015 by Marius Gavrilescu
+Copyright (C) 2014-2015 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
This page took 0.011504 seconds and 4 git commands to generate.