diff options
author | Karl Berry <karl@freefriends.org> | 2017-03-19 22:13:33 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-03-19 22:13:33 +0000 |
commit | ab8587dbc13ebcf5b8d07dde76c0b7208620400d (patch) | |
tree | 5d955bc2b813e218540200d9d443d8291f466047 /Master/texmf-dist/scripts/bibtexperllibs | |
parent | a9b5c8812a42ed9fc7bd6323b1185a096ecb7c0e (diff) |
bibtexperllibs (19mar17)
git-svn-id: svn://tug.org/texlive/trunk@43549 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/bibtexperllibs')
3 files changed, 7 insertions, 7 deletions
diff --git a/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser.pm b/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser.pm index 7dec6f7bee8..3439d274139 100644 --- a/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser.pm +++ b/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser.pm @@ -1,6 +1,6 @@ package BibTeX::Parser; { - $BibTeX::Parser::VERSION = '0.70'; + $BibTeX::Parser::VERSION = '1.00'; } # ABSTRACT: A pure perl BibTeX parser use warnings; @@ -337,7 +337,7 @@ L<BibTeX::Parser::Author> =head1 VERSION -version 0.70 +version 1.00 =head1 AUTHOR diff --git a/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Author.pm b/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Author.pm index 032186d8ad0..181de2ed775 100644 --- a/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Author.pm +++ b/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Author.pm @@ -1,6 +1,6 @@ package BibTeX::Parser::Author; { - $BibTeX::Parser::Author::VERSION = '0.70'; + $BibTeX::Parser::Author::VERSION = '1.00'; } use warnings; @@ -393,7 +393,7 @@ the following token is not: C<{von}> =head1 VERSION -version 0.70 +version 1.00 =head1 AUTHOR diff --git a/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm b/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm index 665e307b547..af3d32f5e5a 100644 --- a/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm +++ b/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm @@ -1,6 +1,6 @@ package BibTeX::Parser::Entry; { - $BibTeX::Parser::Entry::VERSION = '0.70'; + $BibTeX::Parser::Entry::VERSION = '1.00'; } use warnings; @@ -234,7 +234,7 @@ sub to_string { $value = join(' and ', @names); } if ($field eq 'editor' && $options{canonize_names}) { - my @names = ($self->editors); + my @names = ($self->editor); $value = join(' and ', @names); } $result .= " $field = {"."$value"."},\n"; @@ -357,7 +357,7 @@ C<$entry-E<gt>to_string(canonize_names=E<gt>0)> overrides this behavior. =head1 VERSION -version 0.70 +version 1.00 =head1 AUTHOR |