Skip to content

Commit 463ce1c

Browse files
author
Andy Beverley
committed
Release 710
1 parent 5993df3 commit 463ce1c

File tree

9 files changed

+15
-8
lines changed

9 files changed

+15
-8
lines changed

Changes

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
Revision history for Dancer2-Plugin-Auth-Extensible
22

3+
0.710 Sat 15 May 08:02:00 BST 2021
4+
5+
[BUG FIXES]
6+
7+
* Add Test::Fatal to list of dependencies (thanks yldr)
8+
* Fix config for test (thanks Nick Tonkin)
9+
310
0.709 Sun 19 Apr 17:44:00 BST 2020
411

512
[BUG FIXES]

lib/Dancer2/Plugin/Auth/Extensible.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Dancer2::Plugin::Auth::Extensible;
22

3-
our $VERSION = '0.709';
3+
our $VERSION = '0.710';
44

55
use strict;
66
use warnings;

lib/Dancer2/Plugin/Auth/Extensible/Provider/Base.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use warnings;
66
use Carp;
77

8-
our $VERSION = '0.709';
8+
our $VERSION = '0.710';
99

1010
croak "Your Dancer2::Plugin::Auth::Extensible provider needs to be upgraded.\nPlease upgrade to a provider that requires Dancer2::Plugin::Auth::Extensible v0.6 or greater.\n";
1111

lib/Dancer2/Plugin/Auth/Extensible/Provider/Config.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use Moo;
77
with "Dancer2::Plugin::Auth::Extensible::Role::Provider";
88
use namespace::clean;
99

10-
our $VERSION = '0.709';
10+
our $VERSION = '0.710';
1111

1212
=head1 NAME
1313

lib/Dancer2/Plugin/Auth/Extensible/Provider/Example.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ See also L<Dancer2::Plugin::Auth::Extensible::Role::Provider>.
1111
1212
=cut
1313

14-
our $VERSION = '0.709';
14+
our $VERSION = '0.710';
1515

1616
1;

lib/Dancer2/Plugin/Auth/Extensible/Provider/Unix.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Moo;
66
with "Dancer2::Plugin::Auth::Extensible::Role::Provider";
77
use namespace::clean;
88

9-
our $VERSION = '0.709';
9+
our $VERSION = '0.710';
1010

1111
=head1 NAME
1212

lib/Dancer2/Plugin/Auth/Extensible/Role/Provider.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use Crypt::SaltedHash;
44
use Moo::Role;
55
requires qw(authenticate_user);
66

7-
our $VERSION = '0.709';
7+
our $VERSION = '0.710';
88

99
=head1 NAME
1010

lib/Dancer2/Plugin/Auth/Extensible/Test.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Dancer2::Plugin::Auth::Extensible::Test;
22

3-
our $VERSION = '0.709';
3+
our $VERSION = '0.710';
44

55
=head1 NAME
66

lib/Dancer2/Plugin/Auth/Extensible/Test/App.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Dancer2::Plugin::Auth::Extensible::Test::App - Dancer2 app for testing providers
66
77
=cut
88

9-
our $VERSION = '0.709';
9+
our $VERSION = '0.710';
1010

1111
use strict;
1212
use warnings;

0 commit comments

Comments
 (0)