Skip to content

Commit 3435634

Browse files
authored
Merge pull request #22 from albert-github/feature/bug_version
issue #21 Version string in new release 1.73 not updated
2 parents 53d3368 + 8ea42b7 commit 3435634

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

Changes

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
11
Release Notes:
2+
v1.73 - 2019-11-15
3+
Changes
4+
Detection of package name (see (see https://github.com/jordan2175/doxygen-filter-perl/pull/20)
5+
Asterisk in prototype (see: https://github.com/jordan2175/doxygen-filter-perl/pull/19)
6+
Recognizing subroutine definitions. (see https://github.com/jordan2175/doxygen-filter-perl/pull/18)
7+
Don't encode text (see https://github.com/jordan2175/doxygen-filter-perl/pull/17)
8+
Remove `\n` from headers (see https://github.com/jordan2175/doxygen-filter-perl/pull/15)
9+
Small prototype support (see https://github.com/jordan2175/doxygen-filter-perl/pull/14)
10+
Doxygen supports `<code>` (see https://github.com/jordan2175/doxygen-filter-perl/pull/13)
11+
Incorrect end of comment detected (see https://github.com/jordan2175/doxygen-filter-perl/pull/12)
12+
Make code section XHTML compatible (see https://github.com/jordan2175/doxygen-filter-perl/pull/10)
13+
Correcting multiple use of doxygen section labels (see https://github.com/jordan2175/doxygen-filter-perl/pull/9)
14+
Uninitialized variable (see https://github.com/jordan2175/doxygen-filter-perl/pull/8)
15+
Fix for some uninitialized variables (see https://github.com/jordan2175/doxygen-filter-perl/pull/7)
16+
Correct file name in case of space in the name (see https://github.com/jordan2175/doxygen-filter-perl/pull/6)
17+
Uninitialized value $sOptions (see https://github.com/jordan2175/doxygen-filter-perl/pull/5)
18+
issue #3 "Use of uninitialized value $sMethodName" problem (see https://github.com/jordan2175/doxygen-filter-perl/pull/4)
219
v1.72 - 2015-03-23
320
Changes
4-
Un-did change from 1.71 and fixed it correctly by changing the Doxyfile
21+
Fixed license (just in case)
522
v1.71 - 2015-03-16
623
Chnaged
724
Fix issue where public objects were not showing up, if a private objects was found

lib/Doxygen/Filter.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
# @endverbatim
1919
#
2020
# @copy 2011, Bret Jordan (jordan2175@gmail.com, jordan@open1x.org)
21-
# $Id: Filter.pm 88 2012-07-07 04:27:35Z jordan2175 $
2221
#*
2322
package Doxygen::Filter;
2423

@@ -27,7 +26,7 @@ use strict;
2726
use warnings;
2827
use Log::Log4perl;
2928

30-
our $VERSION = '1.72';
29+
our $VERSION = '1.73';
3130
$VERSION = eval $VERSION;
3231

3332

lib/Doxygen/Filter/Perl.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
# @endverbatim
1919
#
2020
# @copy 2011, Bret Jordan (jordan2175@gmail.com, jordan@open1x.org)
21-
# $Id: Perl.pm 93 2015-03-17 13:08:02Z jordan2175 $
2221
#*
2322
package Doxygen::Filter::Perl;
2423

@@ -31,7 +30,7 @@ use Pod::POM;
3130
use IO::Handle;
3231
use Doxygen::Filter::Perl::POD;
3332

34-
our $VERSION = '1.72';
33+
our $VERSION = '1.73';
3534
$VERSION = eval $VERSION;
3635

3736

lib/Doxygen/Filter/Perl/POD.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
# @endverbatim
1919
#
2020
# @copy 2011, Bret Jordan (jordan2175@gmail.com, jordan@open1x.org)
21-
# $Id: POD.pm 88 2012-07-07 04:27:35Z jordan2175 $
2221
#*
2322
package Doxygen::Filter::Perl::POD;
2423

@@ -28,7 +27,7 @@ use warnings;
2827
use parent qw(Pod::POM::View::HTML);
2928
use Log::Log4perl;
3029

31-
our $VERSION = '1.72';
30+
our $VERSION = '1.73';
3231
$VERSION = eval $VERSION;
3332
our $labelCnt = 0; # label counter to see to it that when e.g. twice a =head1 NAME in a file it is still an unique label
3433
our $sectionLabel = 'x';

0 commit comments

Comments
 (0)