summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2017-12-15 07:24:17 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2017-12-15 07:24:17 +0200
commitad5361f9a7992302e9a1821fa36bbd5f60df15ec (patch)
treec3cf1afcc361c32f739b7e9fd7823cb61d0e33e0
parent739c7292539dc0fce8e6ec8c924fe5eba09eb832 (diff)
downloadacpp-ad5361f9a7992302e9a1821fa36bbd5f60df15ec.tar.gz
acpp-ad5361f9a7992302e9a1821fa36bbd5f60df15ec.tar.bz2
Version 1.02v1.02
-rw-r--r--Changes4
-rw-r--r--lib/Apache/Config/Preproc.pm2
-rw-r--r--lib/Apache/Config/Preproc/compact.pm2
-rw-r--r--lib/Apache/Config/Preproc/ifdefine.pm2
-rw-r--r--lib/Apache/Config/Preproc/ifmodule.pm2
-rw-r--r--lib/Apache/Config/Preproc/include.pm2
-rw-r--r--lib/Apache/Config/Preproc/macro.pm2
7 files changed, 10 insertions, 6 deletions
diff --git a/Changes b/Changes
index f7f4803..0d1e4b6 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,7 @@
11.02 2017-12-14
2
3* Fix cyclic inclusion detection
4
11.01 2017-12-12 51.01 2017-12-12
2 6
3* Minor fixes 7* Minor fixes
diff --git a/lib/Apache/Config/Preproc.pm b/lib/Apache/Config/Preproc.pm
index 03ede82..acfd027 100644
--- a/lib/Apache/Config/Preproc.pm
+++ b/lib/Apache/Config/Preproc.pm
@@ -4,7 +4,7 @@ use strict;
4use warnings; 4use warnings;
5use Carp; 5use Carp;
6 6
7our $VERSION = '1.01'; 7our $VERSION = '1.02';
8 8
9sub new { 9sub new {
10 my $class = shift; 10 my $class = shift;
diff --git a/lib/Apache/Config/Preproc/compact.pm b/lib/Apache/Config/Preproc/compact.pm
index 40fa1e6..b309be3 100644
--- a/lib/Apache/Config/Preproc/compact.pm
+++ b/lib/Apache/Config/Preproc/compact.pm
@@ -3,7 +3,7 @@ use strict;
3use warnings; 3use warnings;
4use Carp; 4use Carp;
5 5
6our $VERSION = '1.01'; 6our $VERSION = '1.02';
7 7
8sub new { 8sub new {
9 croak "too many arguments" unless @_ == 2; 9 croak "too many arguments" unless @_ == 2;
diff --git a/lib/Apache/Config/Preproc/ifdefine.pm b/lib/Apache/Config/Preproc/ifdefine.pm
index 7cd5ae1..06e6445 100644
--- a/lib/Apache/Config/Preproc/ifdefine.pm
+++ b/lib/Apache/Config/Preproc/ifdefine.pm
@@ -3,7 +3,7 @@ use strict;
3use warnings; 3use warnings;
4use Carp; 4use Carp;
5 5
6our $VERSION = '1.01'; 6our $VERSION = '1.02';
7 7
8sub new { 8sub new {
9 my $class = shift; 9 my $class = shift;
diff --git a/lib/Apache/Config/Preproc/ifmodule.pm b/lib/Apache/Config/Preproc/ifmodule.pm
index bbfd943..b796ba9 100644
--- a/lib/Apache/Config/Preproc/ifmodule.pm
+++ b/lib/Apache/Config/Preproc/ifmodule.pm
@@ -4,7 +4,7 @@ use warnings;
4use Carp; 4use Carp;
5use IPC::Open3; 5use IPC::Open3;
6 6
7our $VERSION = '1.01'; 7our $VERSION = '1.02';
8 8
9sub new { 9sub new {
10 my $class = shift; 10 my $class = shift;
diff --git a/lib/Apache/Config/Preproc/include.pm b/lib/Apache/Config/Preproc/include.pm
index 658ab8c..7b3eebe 100644
--- a/lib/Apache/Config/Preproc/include.pm
+++ b/lib/Apache/Config/Preproc/include.pm
@@ -8,7 +8,7 @@ use Cwd 'abs_path';
8use IPC::Open3; 8use IPC::Open3;
9use Carp; 9use Carp;
10 10
11our $VERSION = '1.01'; 11our $VERSION = '1.02';
12 12
13sub new { 13sub new {
14 my $class = shift; 14 my $class = shift;
diff --git a/lib/Apache/Config/Preproc/macro.pm b/lib/Apache/Config/Preproc/macro.pm
index c8d09a9..a8fcdc9 100644
--- a/lib/Apache/Config/Preproc/macro.pm
+++ b/lib/Apache/Config/Preproc/macro.pm
@@ -4,7 +4,7 @@ use warnings;
4use Text::ParseWords; 4use Text::ParseWords;
5use Carp; 5use Carp;
6 6
7our $VERSION = '1.01'; 7our $VERSION = '1.02';
8 8
9sub new { 9sub new {
10 my $self = bless { keep => {} }, shift; 10 my $self = bless { keep => {} }, shift;

Return to:

Send suggestions and report system problems to the System administrator.