Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 2.03.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index ac8fef1..50bc671 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for Perl module App::dategrep

 {{$NEXT}}

+2.03 2018-08-07T21:07:42Z
+
+  - use LC_ALL in tests
+
 2.02 2018-08-07T20:43:46Z

   - set LC_TIME and TZ in all test scripts
  • Loading branch information
mdom committed Aug 7, 2018
1 parent 5cac184 commit a0d185a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ Revision history for Perl module App::dategrep

{{$NEXT}}

2.03 2018-08-07T21:07:42Z

- use LC_ALL in tests

2.02 2018-08-07T20:43:46Z

- set LC_TIME and TZ in all test scripts
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"web" : "https://github.com/mdom/dategrep"
}
},
"version" : "2.02",
"version" : "2.03",
"x_contributors" : [
"Mario Domgoergen <mario@domgoergen.com>",
"Mario Domgoergen <mdom@taz.de>",
Expand Down
2 changes: 1 addition & 1 deletion lib/App/dategrep.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Pod::Usage;
use Getopt::Long;
use File::Basename qw(basename);

our $VERSION = '2.02';
our $VERSION = '2.03';

our $app;

Expand Down
4 changes: 2 additions & 2 deletions t/lib/Test/Dategrep.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ use strict;
use warnings;

BEGIN {
$ENV{LC_ALL} = 'C';
$ENV{TZ} = 'GMT';
$ENV{LC_ALL} = 'C';
$ENV{TZ} = 'GMT';
}

use Test::Output;
Expand Down

0 comments on commit a0d185a

Please sign in to comment.