From bef2caa6f5f919aa506386ba0ec5f4bf1dac402d Mon Sep 17 00:00:00 2001
From: Marius Gavrilescu <marius@ieval.ro>
Date: Sat, 14 Apr 2018 22:23:05 +0300
Subject: [PATCH] Bump version and update Changes

---
 Changes                         | 5 +++++
 README                          | 9 +++++----
 lib/Authen/Passphrase/Scrypt.pm | 4 ++--
 3 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/Changes b/Changes
index f2c015c..597978e 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 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
diff --git a/README b/README
index cd84c80..4a8437b 100644
--- 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.
 
@@ -28,12 +28,13 @@ This module requires these other modules and libraries:
 
 * OpenSSL (-lcrypto)
 * Authen::Passphrase
-* Class::Accessor::Fast
 * Data::Entropy::Algorithms
+* Object::Tiny
+* Test::Exception
 
 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,
diff --git a/lib/Authen/Passphrase/Scrypt.pm b/lib/Authen/Passphrase/Scrypt.pm
index 3a43e25..52fc683 100644
--- a/lib/Authen/Passphrase/Scrypt.pm
+++ b/lib/Authen/Passphrase/Scrypt.pm
@@ -9,7 +9,7 @@ use parent qw/Exporter Authen::Passphrase/;
 
 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/;
@@ -215,7 +215,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =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,
-- 
2.39.5