From: Marius Gavrilescu <marius@ieval.ro>
Date: Sat, 7 Jan 2017 19:27:05 +0000 (+0200)
Subject: Bump version and update Changes
X-Git-Tag: 0.002^0
X-Git-Url: http://git.ieval.ro/?a=commitdiff_plain;h=77386ee07cb00479bfedc5bbe202393ff8791cdd;p=app-lastmsg.git

Bump version and update Changes
---

diff --git a/Changes b/Changes
index 23e0b7d..fca48fd 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,13 @@
 Revision history for Perl extension App::Lastmsg.
 
+0.002 2017-01-07T21:27+02:00
+ - [Windows compatibility] Prevent warnings for systems without
+   $ENV{HOME} or $ENV{USER}
+ - [Windows compatibility] Fix tests on systems without "%s" specifier
+   for strftime.
+ - Write debug messages on STDERR not STDOUT
+ - Test debug output as well
+
 0.001002 2016-12-31T22:59+02:00
  - Fix test
 
diff --git a/README b/README
index 0e045ea..b0f6085 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-App-Lastmsg version 0.001
+App-Lastmsg version 0.002
 =========================
 
 lastmsg reads your mail folders looking for emails you exchanged with
@@ -25,7 +25,7 @@ This module requires these other modules and libraries:
 
 COPYRIGHT AND LICENCE
 
-Copyright (C) 2016 by Marius Gavrilescu
+Copyright (C) 2016-2017 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.24.1 or,
diff --git a/lastmsg b/lastmsg
index ee7e68a..f7de2eb 100755
--- a/lastmsg
+++ b/lastmsg
@@ -117,7 +117,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2016 by Marius Gavrilescu
+Copyright (C) 2016-2017 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.24.1 or,
diff --git a/lib/App/Lastmsg.pm b/lib/App/Lastmsg.pm
index 40a3e8a..8f7be5e 100644
--- a/lib/App/Lastmsg.pm
+++ b/lib/App/Lastmsg.pm
@@ -12,7 +12,7 @@ use List::Util qw/max/;
 use POSIX qw/strftime/;
 
 our $OUTPUT_FILEHANDLE = \*STDOUT;
-our $VERSION = '0.001002';
+our $VERSION = '0.002';
 
 our @DEFAULT_INBOX;
 push @DEFAULT_INBOX, "/var/mail/$ENV{USER}" if exists $ENV{USER};
@@ -133,7 +133,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2016 by Marius Gavrilescu
+Copyright (C) 2016-2017 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.24.1 or,