Skip to content

Commit

Permalink
Bump version and year for release
Browse files Browse the repository at this point in the history
  • Loading branch information
danaj committed Jan 3, 2016
1 parent 936d6c0 commit 6cdbdbb
Show file tree
Hide file tree
Showing 17 changed files with 39 additions and 38 deletions.
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Revision history for Perl module Math::Prime::Util

0.57 ?
0.57 2016-01-03

[ADDED]

Expand Down
6 changes: 3 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This software is Copyright (c) 2011-2015 by Dana Jacobsen.
This software is Copyright (c) 2011-2016 by Dana Jacobsen.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
Expand All @@ -12,7 +12,7 @@ b) the "Artistic License"

--- The GNU General Public License, Version 1, February 1989 ---

This software is Copyright (c) 2011-2015 by Dana Jacobsen.
This software is Copyright (c) 2011-2016 by Dana Jacobsen.

This is free software, licensed under:

Expand Down Expand Up @@ -272,7 +272,7 @@ That's all there is to it!

--- The Artistic License 1.0 ---

This software is Copyright (c) 2011-2015 by Dana Jacobsen.
This software is Copyright (c) 2011-2016 by Dana Jacobsen.

This is free software, licensed under:

Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ t/24-partitions.t
t/25-lucas_sequences.t
t/26-combinatorial.t
t/26-digits.t
t/26-vec.t
t/27-bernfrac.t
t/28-pi.t
t/29-mersenne.t
Expand Down
12 changes: 6 additions & 6 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -81,22 +81,22 @@ WriteMakefile1(
},
provides => {
'ntheory' => {
version => '0.56', file => 'lib/ntheory.pm',
version => '0.57', file => 'lib/ntheory.pm',
},
'Math::Prime::Util' => {
version => '0.56', file => 'lib/Math/Prime/Util.pm',
version => '0.57', file => 'lib/Math/Prime/Util.pm',
},
'Math::Prime::Util::MemFree' => {
version => '0.56', file => 'lib/Math/Prime/Util/MemFree.pm',
version => '0.57', file => 'lib/Math/Prime/Util/MemFree.pm',
},
'Math::Prime::Util::PP' => {
version => '0.56', file => 'lib/Math/Prime/Util/PP.pm',
version => '0.57', file => 'lib/Math/Prime/Util/PP.pm',
},
'Math::Prime::Util::PrimeArray' => {
version => '0.56', file => 'lib/Math/Prime/Util/PrimeArray.pm',
version => '0.57', file => 'lib/Math/Prime/Util/PrimeArray.pm',
},
'Math::Prime::Util::PrimeIterator' => {
version => '0.56', file => 'lib/Math/Prime/Util/PrimeIterator.pm',
version => '0.57', file => 'lib/Math/Prime/Util/PrimeIterator.pm',
},
# Skip: PPFE, PrimalityProving, RandomPrimes, ZetaBigFloat,
# ECAffinePoint, ECProjectivePoint
Expand Down
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Math::Prime::Util version 0.56
Math::Prime::Util version 0.57

A module for number theory in Perl. This includes prime sieving, primality
tests, primality proofs, integer factoring, counts / bounds / approximations
Expand Down Expand Up @@ -60,7 +60,7 @@ Bytes::Random::Secure 0.23 or later.

COPYRIGHT AND LICENCE

Copyright (C) 2011-2015 by Dana Jacobsen <dana@acm.org>
Copyright (C) 2011-2016 by Dana Jacobsen <dana@acm.org>

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
6 changes: 3 additions & 3 deletions lib/Math/Prime/Util.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Carp qw/croak confess carp/;

BEGIN {
$Math::Prime::Util::AUTHORITY = 'cpan:DANAJ';
$Math::Prime::Util::VERSION = '0.56';
$Math::Prime::Util::VERSION = '0.57';
}

# parent is cleaner, and in the Perl 5.10.1 / 5.12.0 core, but not earlier.
Expand Down Expand Up @@ -951,7 +951,7 @@ Math::Prime::Util - Utilities related to prime numbers, including fast sieves an
=head1 VERSION
Version 0.56
Version 0.57
=head1 SYNOPSIS
Expand Down Expand Up @@ -4655,7 +4655,7 @@ Douglas A. Stoll and Patrick Demichel , "The impact of ζ(s) complex zeros on π
=head1 COPYRIGHT
Copyright 2011-2015 by Dana Jacobsen E<lt>dana@acm.orgE<gt>
Copyright 2011-2016 by Dana Jacobsen E<lt>dana@acm.orgE<gt>
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Expand Down
4 changes: 2 additions & 2 deletions lib/Math/Prime/Util/ECAffinePoint.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Carp qw/carp croak confess/;

BEGIN {
$Math::Prime::Util::ECAffinePoint::AUTHORITY = 'cpan:DANAJ';
$Math::Prime::Util::ECAffinePoint::VERSION = '0.56';
$Math::Prime::Util::ECAffinePoint::VERSION = '0.57';
}

BEGIN {
Expand Down Expand Up @@ -202,7 +202,7 @@ Math::Prime::Util::ECAffinePoint - Elliptic curve operations for affine points
=head1 VERSION
Version 0.56
Version 0.57
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Math/Prime/Util/ECProjectivePoint.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Carp qw/carp croak confess/;

BEGIN {
$Math::Prime::Util::ECProjectivePoint::AUTHORITY = 'cpan:DANAJ';
$Math::Prime::Util::ECProjectivePoint::VERSION = '0.56';
$Math::Prime::Util::ECProjectivePoint::VERSION = '0.57';
}

BEGIN {
Expand Down Expand Up @@ -209,7 +209,7 @@ Math::Prime::Util::ECProjectivePoint - Elliptic curve operations for projective
=head1 VERSION
Version 0.56
Version 0.57
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Math/Prime/Util/MemFree.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

BEGIN {
$Math::Prime::Util::MemFree::AUTHORITY = 'cpan:DANAJ';
$Math::Prime::Util::MemFree::VERSION = '0.56';
$Math::Prime::Util::MemFree::VERSION = '0.57';
}

use base qw( Exporter );
Expand Down Expand Up @@ -44,7 +44,7 @@ Math::Prime::Util::MemFree - An auto-free object for Math::Prime::Util
=head1 VERSION
Version 0.56
Version 0.57
=head1 SYNOPSIS
Expand Down
6 changes: 3 additions & 3 deletions lib/Math/Prime/Util/PP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Carp qw/carp croak confess/;

BEGIN {
$Math::Prime::Util::PP::AUTHORITY = 'cpan:DANAJ';
$Math::Prime::Util::PP::VERSION = '0.56';
$Math::Prime::Util::PP::VERSION = '0.57';
}

BEGIN {
Expand Down Expand Up @@ -5400,7 +5400,7 @@ Math::Prime::Util::PP - Pure Perl version of Math::Prime::Util
=head1 VERSION
Version 0.56
Version 0.57
=head1 SYNOPSIS
Expand Down Expand Up @@ -5513,7 +5513,7 @@ Dana Jacobsen E<lt>dana@acm.orgE<gt>
=head1 COPYRIGHT
Copyright 2012-2015 by Dana Jacobsen E<lt>dana@acm.orgE<gt>
Copyright 2012-2016 by Dana Jacobsen E<lt>dana@acm.orgE<gt>
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Expand Down
2 changes: 1 addition & 1 deletion lib/Math/Prime/Util/PPFE.pm
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ Dana Jacobsen E<lt>dana@acm.orgE<gt>
=head1 COPYRIGHT
Copyright 2014-2015 by Dana Jacobsen E<lt>dana@acm.orgE<gt>
Copyright 2014-2016 by Dana Jacobsen E<lt>dana@acm.orgE<gt>
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Expand Down
4 changes: 2 additions & 2 deletions lib/Math/Prime/Util/PrimalityProving.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Math::Prime::Util qw/is_prob_prime is_strong_pseudoprime

BEGIN {
$Math::Prime::Util::PrimalityProving::AUTHORITY = 'cpan:DANAJ';
$Math::Prime::Util::PrimalityProving::VERSION = '0.56';
$Math::Prime::Util::PrimalityProving::VERSION = '0.57';
}

BEGIN {
Expand Down Expand Up @@ -864,7 +864,7 @@ Math::Prime::Util::PrimalityProving - Primality proofs and certificates
=head1 VERSION
Version 0.56
Version 0.57
=head1 SYNOPSIS
Expand Down
6 changes: 3 additions & 3 deletions lib/Math/Prime/Util/PrimeArray.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

BEGIN {
$Math::Prime::Util::PrimeArray::AUTHORITY = 'cpan:DANAJ';
$Math::Prime::Util::PrimeArray::VERSION = '0.56';
$Math::Prime::Util::PrimeArray::VERSION = '0.57';
}

# parent is cleaner, and in the Perl 5.10.1 / 5.12.0 core, but not earlier.
Expand Down Expand Up @@ -147,7 +147,7 @@ Math::Prime::Util::PrimeArray - A tied array for primes
=head1 VERSION
Version 0.56
Version 0.57
=head1 SYNOPSIS
Expand Down Expand Up @@ -339,7 +339,7 @@ Dana Jacobsen E<lt>dana@acm.orgE<gt>
=head1 COPYRIGHT
Copyright 2012-2015 by Dana Jacobsen E<lt>dana@acm.orgE<gt>
Copyright 2012-2016 by Dana Jacobsen E<lt>dana@acm.orgE<gt>
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Expand Down
4 changes: 2 additions & 2 deletions lib/Math/Prime/Util/PrimeIterator.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

BEGIN {
$Math::Prime::Util::PrimeIterator::AUTHORITY = 'cpan:DANAJ';
$Math::Prime::Util::PrimeIterator::VERSION = '0.56';
$Math::Prime::Util::PrimeIterator::VERSION = '0.57';
}

use base qw( Exporter );
Expand Down Expand Up @@ -129,7 +129,7 @@ Math::Prime::Util::PrimeIterator - An object iterator for primes
=head1 VERSION
Version 0.56
Version 0.57
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Math/Prime/Util/RandomPrimes.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use Math::Prime::Util qw/ prime_get_config

BEGIN {
$Math::Prime::Util::RandomPrimes::AUTHORITY = 'cpan:DANAJ';
$Math::Prime::Util::RandomPrimes::VERSION = '0.56';
$Math::Prime::Util::RandomPrimes::VERSION = '0.57';
}

BEGIN {
Expand Down Expand Up @@ -1105,7 +1105,7 @@ Math::Prime::Util::RandomPrimes - Generate random primes
=head1 VERSION
Version 0.56
Version 0.57
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Math/Prime/Util/ZetaBigFloat.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

BEGIN {
$Math::Prime::Util::ZetaBigFloat::AUTHORITY = 'cpan:DANAJ';
$Math::Prime::Util::ZetaBigFloat::VERSION = '0.56';
$Math::Prime::Util::ZetaBigFloat::VERSION = '0.57';
}

BEGIN {
Expand Down Expand Up @@ -508,7 +508,7 @@ Math::Prime::Util::ZetaBigFloat - Perl Big Float versions of Riemann Zeta and R
=head1 VERSION
Version 0.56
Version 0.57
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/ntheory.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

BEGIN {
$ntheory::AUTHORITY = 'cpan:DANAJ';
$ntheory::VERSION = '0.56';
$ntheory::VERSION = '0.57';
}

BEGIN {
Expand Down Expand Up @@ -213,7 +213,7 @@ See L<Math::Prime::Util> for complete documentation.
=head1 COPYRIGHT
Copyright 2011-2015 by Dana Jacobsen E<lt>dana@acm.orgE<gt>
Copyright 2011-2016 by Dana Jacobsen E<lt>dana@acm.orgE<gt>
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Expand Down

0 comments on commit 6cdbdbb

Please sign in to comment.