Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
version bump, 06 build
Browse files Browse the repository at this point in the history
  • Loading branch information
tempire committed Oct 29, 2011
1 parent 84aed68 commit b7e2756
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 15 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,3 +1,6 @@
0.06 2011-10-29
- Allow : in passwords (Kirill Miazine)

0.05 2011-06-02
- Removed unused reference to Mojo::Client in tests
- Require Mojolicious >= 1.4
Expand Down
Binary file removed Mojolicious-Plugin-BasicAuth-0.05.tar.gz
Binary file not shown.
Binary file added Mojolicious-Plugin-BasicAuth-0.06.tar.gz
Binary file not shown.
8 changes: 2 additions & 6 deletions README.pod
Expand Up @@ -44,17 +44,13 @@ L<http://github.com/tempire/mojolicious-plugin-basicauth>

=head1 VERSION

0.05
0.06

=head1 CREDITS

=over 4

=item Sebastian Riedel (sri) for L<Mojolicious>

=item Viacheslav Tykhanovskyi (vti) for spreading the love over IRC

=item Both of the above for making #mojo a much less abrasive place than #catalyst
=item Kirill Miazine

=back

Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Expand Up @@ -2,7 +2,7 @@ name = Mojolicious-Plugin-BasicAuth
auth = Glen Hinkle <tempire@cpan.org>
license = Perl_5
copyright_holder = Glen Hinkle
version = 0.05
version = 0.06

[@Filter]
bundle = @Basic
Expand Down
10 changes: 3 additions & 7 deletions lib/Mojolicious/Plugin/BasicAuth.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Mojo::ByteStream;

our $VERSION = '0.05';
our $VERSION = '0.06';

use base 'Mojolicious::Plugin';

Expand Down Expand Up @@ -108,17 +108,13 @@ L<http://github.com/tempire/mojolicious-plugin-basicauth>
=head1 VERSION
0.05
0.06
=head1 CREDITS
=over 4
=item Sebastian Riedel (sri) for L<Mojolicious>
=item Viacheslav Tykhanovskyi (vti) for spreading the love over IRC
=item Both of the above for making #mojo a much less abrasive place than #catalyst
=item Kirill Miazine
=back
Expand Down
1 change: 0 additions & 1 deletion t/auth.t
Expand Up @@ -155,4 +155,3 @@ $encoded = b("username:password")->b64_encode->to_string;
chop $encoded;
$t->get_ok('/under-bridge', {Authorization => "Basic $encoded"})
->status_is(200)->content_is('authorized');

0 comments on commit b7e2756

Please sign in to comment.