aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2020-07-14 18:28:17 +0300
committerSergey Poznyakoff <gray@gnu.org>2020-07-14 18:28:17 +0300
commit447a2f7af507feebbf8db7c9af29855f4ee881eb (patch)
treee64196419f7ef6601fafe884e43df30772b41bc0
parent1503b1942bc17411626094ab746fe1de3231c2ef (diff)
downloadacmeman-447a2f7af507feebbf8db7c9af29855f4ee881eb.tar.gz
acmeman-447a2f7af507feebbf8db7c9af29855f4ee881eb.tar.bz2
Version 3.04v3.04
* Changes: Update. * lib/App/Acmeman.pm: Version 3.04 * lib/App/Acmeman/Domain.pm: Remove the $VERSION variable. * lib/App/Acmeman/Log.pm: Use strict and warnings.
-rw-r--r--Changes8
-rw-r--r--lib/App/Acmeman.pm2
-rw-r--r--lib/App/Acmeman/Domain.pm1
-rw-r--r--lib/App/Acmeman/Log.pm2
4 files changed, 11 insertions, 2 deletions
diff --git a/Changes b/Changes
index c89c932..fa5fc7d 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,11 @@
+3.04 2020-06-14
+
+ - Rewrite Apache configuration layout support.
+ - Improve Apache setup procedure.
+ - Make sure the generated cert.pem file is terminated with a
+ newline.
+ - Accept ServerName value with the scheme prefix.
+
3.03 2019-12-23
- The following environment variables are set when running
diff --git a/lib/App/Acmeman.pm b/lib/App/Acmeman.pm
index fafcb09..68d1fe6 100644
--- a/lib/App/Acmeman.pm
+++ b/lib/App/Acmeman.pm
@@ -24,7 +24,7 @@ use Text::ParseWords;
use App::Acmeman::Log qw(:all :sysexits);
use feature 'state';
-our $VERSION = '3.03';
+our $VERSION = '3.04';
my $progdescr = "manages ACME certificates";
diff --git a/lib/App/Acmeman/Domain.pm b/lib/App/Acmeman/Domain.pm
index 46c3f1d..97ec5ca 100644
--- a/lib/App/Acmeman/Domain.pm
+++ b/lib/App/Acmeman/Domain.pm
@@ -9,7 +9,6 @@ require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(CERT_FILE KEY_FILE CA_FILE);
our %EXPORT_TAGS = ( files => [ qw(CERT_FILE KEY_FILE CA_FILE) ] );
-our $VERSION = '1.00';
use constant {
CERT_FILE => 0,
diff --git a/lib/App/Acmeman/Log.pm b/lib/App/Acmeman/Log.pm
index 72242c0..02f5d65 100644
--- a/lib/App/Acmeman/Log.pm
+++ b/lib/App/Acmeman/Log.pm
@@ -1,4 +1,6 @@
package App::Acmeman::Log;
+use strict;
+use warnings;
use File::Basename;
use parent 'Exporter';

Return to:

Send suggestions and report system problems to the System administrator.