Skip to content

Commit

Permalink
Merge pull request #27 from oetiker/v0.7.2
Browse files Browse the repository at this point in the history
fix version numbering
  • Loading branch information
oetiker authored Jul 28, 2020
2 parents e2e5ba1 + bb63943 commit 421a090
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 deletions.
3 changes: 2 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
2020-06-10 15:23:25 +0200 (HEAD -> master, tag: v0.7.1) support openssl 1.1 -- Tobias Oetiker
2020-07-28 11:27:08 +0200 (HEAD -> v0.7.2, origin/v0.7.2, master) * remove v1 leftovers * improve error handling -- Tobias Oetiker
2020-06-10 15:23:25 +0200 (tag: v0.7.1) support openssl 1.1 -- Tobias Oetiker
2020-02-11 22:44:10 +0100 build should honour sysconfdir (#24) -- Dominik Hassler
2019-07-12 13:48:49 +0200 Disclaimer added (#23) -- Samuel Amoser
2020-06-10 15:16:26 +0200 switch to Net::ACME2 -- Tobias Oetiker
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.2
0.7.3
7 changes: 4 additions & 3 deletions bin/acmefetch
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use warnings;
use strict;
use lib qw(); # PERL5LIB
use FindBin;
use lib qw(/opt/acmefetch/lib); # LIBDIR
use lib $FindBin::RealBin.'/../lib'; # LIBDIR

use Net::ACME2::LetsEncrypt;
use Data::Processor;
Expand All @@ -17,7 +17,7 @@ use Crypt::OpenSSL::X509;
use FindBin;
use POSIX qw(strftime);

my $VERSION = q{0.7.1}; # VERSION
my $VERSION = '0.dev'; # VERSION

my %formatMap = (
DER => Crypt::OpenSSL::X509::FORMAT_ASN1(),
Expand All @@ -36,7 +36,8 @@ sub main()
if($opt{man}) { pod2usage(-exitstatus => 0, -verbose => 2) }
if($opt{version}) { print "acmefetch $VERSION\n"; exit(0) }

my $cfg = loadCfg($opt{cfg} // "/opt/acmefetch/etc/acmefetch.cfg"); # CONFFILE
my $cfg = loadCfg($opt{cfg} // $FindBin::RealBin.'/../etc/acmefetch.cfg');


getCertificates($cfg);

Expand Down
20 changes: 10 additions & 10 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for AcmeFetch 0.7.2.
# Generated by GNU Autoconf 2.69 for AcmeFetch 0.7.3.
#
# Report bugs to <[email protected]>.
#
Expand Down Expand Up @@ -580,8 +580,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='AcmeFetch'
PACKAGE_TARNAME='acmefetch'
PACKAGE_VERSION='0.7.2'
PACKAGE_STRING='AcmeFetch 0.7.2'
PACKAGE_VERSION='0.7.3'
PACKAGE_STRING='AcmeFetch 0.7.3'
PACKAGE_BUGREPORT='[email protected]'
PACKAGE_URL=''

Expand Down Expand Up @@ -1295,7 +1295,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures AcmeFetch 0.7.2 to adapt to many kinds of systems.
\`configure' configures AcmeFetch 0.7.3 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1362,7 +1362,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of AcmeFetch 0.7.2:";;
short | recursive ) echo "Configuration of AcmeFetch 0.7.3:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1460,7 +1460,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
AcmeFetch configure 0.7.2
AcmeFetch configure 0.7.3
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1716,7 +1716,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by AcmeFetch $as_me 0.7.2, which was
It was created by AcmeFetch $as_me 0.7.3, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -2583,7 +2583,7 @@ fi
# Define the identity of the package.
PACKAGE='acmefetch'
VERSION='0.7.2'
VERSION='0.7.3'
cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -5258,7 +5258,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by AcmeFetch $as_me 0.7.2, which was
This file was extended by AcmeFetch $as_me 0.7.3, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -5315,7 +5315,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
AcmeFetch config.status 0.7.2
AcmeFetch config.status 0.7.3
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
Expand Down

0 comments on commit 421a090

Please sign in to comment.