Bump version and update Changes 0.001002
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 15 Aug 2015 20:15:04 +0000 (23:15 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 15 Aug 2015 20:15:04 +0000 (23:15 +0300)
Changes
Makefile.PL
README
lib/Mafia.pm

diff --git a/Changes b/Changes
index e23c52b47b7d39c016240e328b19946176f23ad7..85fc105a5702cc5190414425654d5b2027eaa53b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Perl extension Mafia.
 
+0.001002 2015-08-15T23:15+03:00
+ - Don't push/shift on array references (fixes test failures on 5.23)
+ - Don't use given/when and smartmatch (since they are experimental)
+ - Don't depend on non-core modules (that is, File::Slurp)
+ - Reduce Perl dependency to 5.10.1
+
 0.001001 2014-08-17T00:18+03:00
  - CPAN Day cleanup release
  - Update Changes to follow CPAN::Changes::Spec
index f78c2187c2cc53560b0e36a986ad273e4da147c6..e1dcb273b305e97c4065ea7d3d95e5678297e1e7 100644 (file)
@@ -12,7 +12,7 @@ WriteMakefile(
        META_MERGE         => {
                dynamic_config => 0,
                resources      => {
-                       repository => 'http://git.ieval.ro/?p=mafia.git',
+                       repository => 'https://git.ieval.ro/?p=mafia.git',
                }
        }
 );
diff --git a/README b/README
index 9715e59ad937e5b5a2df65019093f44bb93da9d2..54084dd77b0950657a14b9ae3548f978235adacc 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Mafia version 0.001001
+Mafia version 0.001002
 ======================
 
 Mafia.pm is a Perl extension for easily moderating Mafia games.
@@ -14,13 +14,11 @@ To install this module type the following:
 
 DEPENDENCIES
 
-This module requires these other modules and libraries:
-
-* File::Slurp (only for testing)
+No modules outside Perl core are needed.
 
 COPYRIGHT AND LICENCE
 
-Copyright (C) 2013 by Marius Gavrilescu
+Copyright (C) 2013-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.14.2 or,
index 7785546bce3c0425340b6a28cd6c3b4bd87ad5ce..2b943b4ddf7b6f68448cd3f73ecf547644e8ad15 100644 (file)
@@ -8,7 +8,7 @@ use parent qw/Exporter/;
 use constant;
 use Storable qw/dclone/;
 
-our $VERSION = '0.001001';
+our $VERSION = '0.001002';
 
 sub defconst { constant->import($_ => $_) for @_ }
 
@@ -575,7 +575,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2013 by Marius Gavrilescu
+Copyright (C) 2013-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.14.2 or,
This page took 0.013672 seconds and 4 git commands to generate.