From 447a2f7af507feebbf8db7c9af29855f4ee881eb Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Tue, 14 Jul 2020 18:28:17 +0300 Subject: Version 3.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. --- Changes | 8 ++++++++ lib/App/Acmeman.pm | 2 +- lib/App/Acmeman/Domain.pm | 1 - lib/App/Acmeman/Log.pm | 2 ++ 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'; -- cgit v1.2.1