pull in 0.0.1

This commit is contained in:
Zane C. B-H 2021-07-10 20:39:59 -05:00
parent 8ee1628ee5
commit c4a3e7e1ce
3 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
Revision history for MP3-Tag-Utils
0.0.1 2010-08-19/18:00
-Add a missing && in "bin/mp3tag".
0.0.0 2010-08-19/17:00
-Initial release.

View File

@ -55,7 +55,7 @@ getopts('a:A:c:g:t:T:y:', \%opts);
#if more than one was specified, make sure the safety is off
if (
defined( $ARGV[1] ) &&
(!defined( $opts{S} ))
(!defined( $opts{S} )) &&
(defined($opts{t}))
) {
warn('More than one file specified and "-t" is being used, but "-S" is not supplied');

View File

@ -11,11 +11,11 @@ MP3::Tag::Utils - Assorted utilities for manipulating MP3 files via MP3::Tag.
=head1 VERSION
Version 0.0.0
Version 0.0.1
=cut
our $VERSION = '0.0.0';
our $VERSION = '0.0.1';
=head1 SYNOPSIS