Skip to content

Commit

Permalink
Fix copy&paste typo
Browse files Browse the repository at this point in the history
  • Loading branch information
baierjan committed Mar 11, 2024
1 parent afb888e commit 9548803
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.702 2024/03/11
- fix type in Makefile.PL

1.701 2024/03/11
- fix kwalitee issues
- improve versioning
Expand Down
4 changes: 2 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ WriteMakefile(
},
provides => {
'Pass::OTP' => {
file => 'lib/Pass/OTP.om', version => '1.701',
file => 'lib/Pass/OTP.pm', version => '1.702',
},
'Pass::OTP::URI' => {
file => 'lib/Pass/OTP.om', version => '1.701',
file => 'lib/Pass/OTP/URI.pm', version => '1.702',
},
}
},
Expand Down
2 changes: 1 addition & 1 deletion lib/Pass/OTP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(otp hotp totp);

our $VERSION = '1.701';
our $VERSION = '1.702';

=head1 DESCRIPTION
Expand Down

0 comments on commit 9548803

Please sign in to comment.