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 @@
+1.02 2017-12-14
+
+* Fix cyclic inclusion detection
+
1.01 2017-12-12
* 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;
use warnings;
use Carp;
-our $VERSION = '1.01';
+our $VERSION = '1.02';
sub new {
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;
use warnings;
use Carp;
-our $VERSION = '1.01';
+our $VERSION = '1.02';
sub new {
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;
use warnings;
use Carp;
-our $VERSION = '1.01';
+our $VERSION = '1.02';
sub new {
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;
use Carp;
use IPC::Open3;
-our $VERSION = '1.01';
+our $VERSION = '1.02';
sub new {
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';
use IPC::Open3;
use Carp;
-our $VERSION = '1.01';
+our $VERSION = '1.02';
sub new {
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;
use Text::ParseWords;
use Carp;
-our $VERSION = '1.01';
+our $VERSION = '1.02';
sub new {
my $self = bless { keep => {} }, shift;

Return to:

Send suggestions and report system problems to the System administrator.