Bump version and update Changes master 0.002
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 14 Apr 2018 19:23:05 +0000 (22:23 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 14 Apr 2018 19:23:05 +0000 (22:23 +0300)
Changes
README
lib/Authen/Passphrase/Scrypt.pm

diff --git a/Changes b/Changes
index f2c015c6b97411ee76f075f313cc61237df1544f..597978ef667c057e8e0ec1a4421eba911c50d86a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for Perl extension Authen::Passphrase::Scrypt.
 
 Revision history for Perl extension Authen::Passphrase::Scrypt.
 
+0.002 2018-04-14T22:23+03:00
+ - Make API compatible with Authen::Passphrase (RT #125063)
+ - Replace Class::Accessor::Fast with Object::Tiny
+ - Improve test coverage
+
 0.001001 2017-07-08T11:45+01:00
  - Fix compilation error on glibc < 2.17.
    clock_gettime requires -lrt on glibc < 2.17. It is used in
 0.001001 2017-07-08T11:45+01:00
  - Fix compilation error on glibc < 2.17.
    clock_gettime requires -lrt on glibc < 2.17. It is used in
diff --git a/README b/README
index cd84c80006ad519c80e691338e411e0c5a4afccd..4a8437b2faab964bb9b7c61eb8306eeaffe89f7e 100644 (file)
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-Authen-Passphrase-Scrypt version 0.001001
-=========================================
+Authen-Passphrase-Scrypt version 0.002
+======================================
 
 This is experimental code, DO NOT USE in security-critical software.
 
 
 This is experimental code, DO NOT USE in security-critical software.
 
@@ -28,12 +28,13 @@ This module requires these other modules and libraries:
 
 * OpenSSL (-lcrypto)
 * Authen::Passphrase
 
 * OpenSSL (-lcrypto)
 * Authen::Passphrase
-* Class::Accessor::Fast
 * Data::Entropy::Algorithms
 * Data::Entropy::Algorithms
+* Object::Tiny
+* Test::Exception
 
 COPYRIGHT AND LICENCE
 
 
 COPYRIGHT AND LICENCE
 
-Copyright (C) 2017 by Marius Gavrilescu
+Copyright (C) 2017-2018 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,
 
 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,
index 3a43e25b3632d83f0a1a9cdb3e406b86b65db56f..52fc683f3934e83f0573168fd5879a81d14eaae6 100644 (file)
@@ -9,7 +9,7 @@ use parent qw/Exporter Authen::Passphrase/;
 
 our @EXPORT = qw/crypto_scrypt/;
 our @EXPORT_OK = @EXPORT;
 
 our @EXPORT = qw/crypto_scrypt/;
 our @EXPORT_OK = @EXPORT;
-our $VERSION = '0.001001';
+our $VERSION = '0.002';
 
 use Data::Entropy::Algorithms qw/rand_bits/;
 use Digest::SHA qw/sha256 hmac_sha256/;
 
 use Data::Entropy::Algorithms qw/rand_bits/;
 use Digest::SHA qw/sha256 hmac_sha256/;
@@ -215,7 +215,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2017 by Marius Gavrilescu
+Copyright (C) 2017-2018 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,
 
 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,
This page took 0.011927 seconds and 4 git commands to generate.