From 2fc55944af6c2166f79282673fb4318021b7fc42 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sat, 8 Jul 2017 13:45:20 +0300 Subject: [PATCH] Bump version and update Changes --- Changes | 6 ++++++ README | 4 ++-- lib/Authen/Passphrase/Scrypt.pm | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) 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/; -- 2.30.2