From: Marius Gavrilescu Date: Sat, 8 Jul 2017 10:45:20 +0000 (+0300) Subject: Bump version and update Changes X-Git-Tag: 0.001001^0 X-Git-Url: http://git.ieval.ro/?p=authen-passphrase-scrypt.git;a=commitdiff_plain;h=2fc55944af6c2166f79282673fb4318021b7fc42;hp=061ad9c5552b029791cb7a14a22c878024169dc9 Bump version and update Changes --- diff --git a/Changes b/Changes index c6ea5dd..f2c015c 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,10 @@ Revision history for Perl extension Authen::Passphrase::Scrypt. +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 + scryptenc_cpuperf.o. The fix is to no longer link that object file + since Authen::Passphrase::Scrypt does not use it. + 0.001 2017-07-01T00:16+03:00 - Initial release diff --git a/README b/README index 9da18eb..cd84c80 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -Authen-Passphrase-Scrypt version 0.001 -====================================== +Authen-Passphrase-Scrypt version 0.001001 +========================================= This is experimental code, DO NOT USE in security-critical software. diff --git a/lib/Authen/Passphrase/Scrypt.pm b/lib/Authen/Passphrase/Scrypt.pm index 060e2c8..213d413 100644 --- a/lib/Authen/Passphrase/Scrypt.pm +++ b/lib/Authen/Passphrase/Scrypt.pm @@ -9,7 +9,7 @@ use parent qw/Exporter Authen::Passphrase Class::Accessor::Fast/; our @EXPORT = qw/crypto_scrypt/; our @EXPORT_OK = @EXPORT; -our $VERSION = '0.001'; +our $VERSION = '0.001001'; use Data::Entropy::Algorithms qw/rand_bits/; use Digest::SHA qw/sha256 hmac_sha256/;