Skip to content

Commit fc8f700

Browse files
committed
Release 0.30.1
1 parent 73713d7 commit fc8f700

File tree

26 files changed

+93
-96
lines changed

26 files changed

+93
-96
lines changed

acme/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools.command.test import test as TestCommand
44
import sys
55

6-
version = '0.30.0'
6+
version = '0.30.1'
77

88
# Please update tox.ini when modifying dependency version requirements
99
install_requires = [

certbot-apache/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33

44

5-
version = '0.30.0'
5+
version = '0.30.1'
66

77
# Remember to update local-oldest-requirements.txt when changing the minimum
88
# acme/certbot version.

certbot-auto

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if [ -z "$VENV_PATH" ]; then
3131
fi
3232
VENV_BIN="$VENV_PATH/bin"
3333
BOOTSTRAP_VERSION_PATH="$VENV_PATH/certbot-auto-bootstrap-version.txt"
34-
LE_AUTO_VERSION="0.30.0"
34+
LE_AUTO_VERSION="0.30.1"
3535
BASENAME=$(basename $0)
3636
USAGE="Usage: $BASENAME [OPTIONS]
3737
A self-updating wrapper script for the Certbot ACME client. When run, updates
@@ -997,10 +997,12 @@ if [ "$1" = "--le-auto-phase2" ]; then
997997
DeterminePythonVersion
998998
rm -rf "$VENV_PATH"
999999
if [ "$PYVER" -le 27 ]; then
1000+
# Use an environment variable instead of a flag for compatibility with old versions
10001001
if [ "$VERBOSE" = 1 ]; then
1001-
virtualenv --no-site-packages --python "$LE_PYTHON" "$VENV_PATH"
1002+
VIRTUALENV_NO_DOWNLOAD=1 virtualenv --no-site-packages --python "$LE_PYTHON" "$VENV_PATH"
10021003
else
1003-
virtualenv --no-site-packages --python "$LE_PYTHON" "$VENV_PATH" > /dev/null
1004+
VIRTUALENV_NO_DOWNLOAD=1 virtualenv --no-site-packages --python "$LE_PYTHON" "$VENV_PATH" \
1005+
> /dev/null
10041006
fi
10051007
else
10061008
if [ "$VERBOSE" = 1 ]; then
@@ -1230,18 +1232,18 @@ letsencrypt==0.7.0 \
12301232
--hash=sha256:105a5fb107e45bcd0722eb89696986dcf5f08a86a321d6aef25a0c7c63375ade \
12311233
--hash=sha256:c36e532c486a7e92155ee09da54b436a3c420813ec1c590b98f635d924720de9
12321234
1233-
certbot==0.30.0 \
1234-
--hash=sha256:b3468e128e74d2295598f6d3fbf9d0edfb67fe5abaca3b985a9e858395bd027f \
1235-
--hash=sha256:d631fe6c75700ce9b2fdae194ff8b53c7518545d87dd451a1704f7572dcd49e8
1236-
acme==0.30.0 \
1237-
--hash=sha256:eed9389f802ebf4988c9e43c28ad3d5c2734237371d78e97450a1d61189a15aa \
1238-
--hash=sha256:984b6d00bec73dcfa616636a760e80ca14bd246fb908710a656547f542f09445
1239-
certbot-apache==0.30.0 \
1240-
--hash=sha256:d38c70fc6930db298ea992a3145362eebdce460d3d2651f86a8f2f43d838c6d0 \
1241-
--hash=sha256:1d4bc207d53a3e5d37e5d9ebd05f26089aa21d1fbf384113ed9d1829b4d1e9bf
1242-
certbot-nginx==0.30.0 \
1243-
--hash=sha256:6163c7d0080f59b4ebe510afcc6af2d2eebf15469275c3835866690db4d465d6 \
1244-
--hash=sha256:e39a3f3d77cd4c653949cf066fb2211039fd2032665697c27b6e8501c7c2dd92
1235+
certbot==0.30.1 \
1236+
--hash=sha256:debdf5cfe17d55c124508a5f720e80094b82e87f167fb45cb6fda41482b6bd76 \
1237+
--hash=sha256:39d1a58d3b59c68e57e26bcb1b73078fc227c8944388e61646dd6bbb203618e7
1238+
acme==0.30.1 \
1239+
--hash=sha256:b75705eba723a6082c7bc8e41853407cb1520ce64d11359ba09b269db9356aed \
1240+
--hash=sha256:dc9b99bdbe1582993c96a8145354a61e79470be382d4d875990dd7d41727d3df
1241+
certbot-apache==0.30.1 \
1242+
--hash=sha256:18dae95e4785e2acdbe0b8d00db9e83b890ca8145f39092911f8ea9e1b0169b3 \
1243+
--hash=sha256:224cf83aeb85f7ca12ad08ddce020ff04576a692305f12ab1d1e7f21ee527180
1244+
certbot-nginx==0.30.1 \
1245+
--hash=sha256:2360e1e0e5b61c4078eced7889b90b85dc00dbc280461bf4e8fc4c3280bb3e52 \
1246+
--hash=sha256:4e15deba3542fcf5b98d021acfdfdea2ed93db0159824271a49694cc357de7f4
12451247
12461248
UNLIKELY_EOF
12471249
# -------------------------------------------------------------------------
@@ -1396,9 +1398,6 @@ def get_index_base():
13961398
def main():
13971399
pip_version = StrictVersion(check_output(['pip', '--version'])
13981400
.decode('utf-8').split()[1])
1399-
min_pip_version = StrictVersion(PIP_VERSION)
1400-
if pip_version >= min_pip_version:
1401-
return 0
14021401
has_pip_cache = pip_version >= StrictVersion('6.0')
14031402
index_base = get_index_base()
14041403
temp = mkdtemp(prefix='pipstrap-')

certbot-compatibility-test/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import find_packages
55

66

7-
version = '0.30.0'
7+
version = '0.30.1'
88

99
install_requires = [
1010
'certbot',

certbot-dns-cloudflare/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33

44

5-
version = '0.30.0'
5+
version = '0.30.1'
66

77
# Remember to update local-oldest-requirements.txt when changing the minimum
88
# acme/certbot version.

certbot-dns-cloudxns/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33

44

5-
version = '0.30.0'
5+
version = '0.30.1'
66

77
# Remember to update local-oldest-requirements.txt when changing the minimum
88
# acme/certbot version.

certbot-dns-digitalocean/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33

44

5-
version = '0.30.0'
5+
version = '0.30.1'
66

77
# Remember to update local-oldest-requirements.txt when changing the minimum
88
# acme/certbot version.

certbot-dns-dnsimple/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33

44

5-
version = '0.30.0'
5+
version = '0.30.1'
66

77
# Remember to update local-oldest-requirements.txt when changing the minimum
88
# acme/certbot version.

certbot-dns-dnsmadeeasy/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33

44

5-
version = '0.30.0'
5+
version = '0.30.1'
66

77
# Remember to update local-oldest-requirements.txt when changing the minimum
88
# acme/certbot version.

certbot-dns-gehirn/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33

44

5-
version = '0.30.0'
5+
version = '0.30.1'
66

77
# Please update tox.ini when modifying dependency version requirements
88
install_requires = [

certbot-dns-google/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33

44

5-
version = '0.30.0'
5+
version = '0.30.1'
66

77
# Remember to update local-oldest-requirements.txt when changing the minimum
88
# acme/certbot version.

certbot-dns-linode/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22
from setuptools import find_packages
33

4-
version = '0.30.0'
4+
version = '0.30.1'
55

66
# Please update tox.ini when modifying dependency version requirements
77
install_requires = [

certbot-dns-luadns/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33

44

5-
version = '0.30.0'
5+
version = '0.30.1'
66

77
# Remember to update local-oldest-requirements.txt when changing the minimum
88
# acme/certbot version.

certbot-dns-nsone/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33

44

5-
version = '0.30.0'
5+
version = '0.30.1'
66

77
# Remember to update local-oldest-requirements.txt when changing the minimum
88
# acme/certbot version.

certbot-dns-ovh/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33

44

5-
version = '0.30.0'
5+
version = '0.30.1'
66

77
# Remember to update local-oldest-requirements.txt when changing the minimum
88
# acme/certbot version.

certbot-dns-rfc2136/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33

44

5-
version = '0.30.0'
5+
version = '0.30.1'
66

77
# Remember to update local-oldest-requirements.txt when changing the minimum
88
# acme/certbot version.

certbot-dns-route53/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22
from setuptools import find_packages
33

4-
version = '0.30.0'
4+
version = '0.30.1'
55

66
# Remember to update local-oldest-requirements.txt when changing the minimum
77
# acme/certbot version.

certbot-dns-sakuracloud/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33

44

5-
version = '0.30.0'
5+
version = '0.30.1'
66

77
# Please update tox.ini when modifying dependency version requirements
88
install_requires = [

certbot-nginx/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33

44

5-
version = '0.30.0'
5+
version = '0.30.1'
66

77
# Remember to update local-oldest-requirements.txt when changing the minimum
88
# acme/certbot version.

certbot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Certbot client."""
22

33
# version number like 1.2.3a0, must have at least 2 parts, like 1.2
4-
__version__ = '0.30.0'
4+
__version__ = '0.30.1'

docs/cli-help.txt

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ optional arguments:
113113
case, and to know when to deprecate support for past
114114
Python versions and flags. If you wish to hide this
115115
information from the Let's Encrypt server, set this to
116-
"". (default: CertbotACMEClient/0.30.0
116+
"". (default: CertbotACMEClient/0.30.1
117117
(certbot(-auto); OS_NAME OS_VERSION) Authenticator/XXX
118118
Installer/YYY (SUBCOMMAND; flags: FLAGS)
119119
Py/major.minor.patchlevel). The flags encoded in the
@@ -479,10 +479,9 @@ apache:
479479
Apache Web Server plugin
480480

481481
--apache-enmod APACHE_ENMOD
482-
Path to the Apache 'a2enmod' binary (default: a2enmod)
482+
Path to the Apache 'a2enmod' binary (default: None)
483483
--apache-dismod APACHE_DISMOD
484-
Path to the Apache 'a2dismod' binary (default:
485-
a2dismod)
484+
Path to the Apache 'a2dismod' binary (default: None)
486485
--apache-le-vhost-ext APACHE_LE_VHOST_EXT
487486
SSL vhost configuration extension (default: -le-
488487
ssl.conf)
@@ -496,16 +495,16 @@ apache:
496495
/var/log/apache2)
497496
--apache-challenge-location APACHE_CHALLENGE_LOCATION
498497
Directory path for challenge configuration (default:
499-
/etc/apache2)
498+
/etc/apache2/other)
500499
--apache-handle-modules APACHE_HANDLE_MODULES
501500
Let installer handle enabling required modules for you
502-
(Only Ubuntu/Debian currently) (default: True)
501+
(Only Ubuntu/Debian currently) (default: False)
503502
--apache-handle-sites APACHE_HANDLE_SITES
504503
Let installer handle enabling sites for you (Only
505-
Ubuntu/Debian currently) (default: True)
504+
Ubuntu/Debian currently) (default: False)
506505
--apache-ctl APACHE_CTL
507506
Full path to Apache control script (default:
508-
apache2ctl)
507+
apachectl)
509508

510509
dns-cloudflare:
511510
Obtain certificates using a DNS TXT record (if you are using Cloudflare

letsencrypt-auto

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if [ -z "$VENV_PATH" ]; then
3131
fi
3232
VENV_BIN="$VENV_PATH/bin"
3333
BOOTSTRAP_VERSION_PATH="$VENV_PATH/certbot-auto-bootstrap-version.txt"
34-
LE_AUTO_VERSION="0.30.0"
34+
LE_AUTO_VERSION="0.30.1"
3535
BASENAME=$(basename $0)
3636
USAGE="Usage: $BASENAME [OPTIONS]
3737
A self-updating wrapper script for the Certbot ACME client. When run, updates
@@ -997,10 +997,12 @@ if [ "$1" = "--le-auto-phase2" ]; then
997997
DeterminePythonVersion
998998
rm -rf "$VENV_PATH"
999999
if [ "$PYVER" -le 27 ]; then
1000+
# Use an environment variable instead of a flag for compatibility with old versions
10001001
if [ "$VERBOSE" = 1 ]; then
1001-
virtualenv --no-site-packages --python "$LE_PYTHON" "$VENV_PATH"
1002+
VIRTUALENV_NO_DOWNLOAD=1 virtualenv --no-site-packages --python "$LE_PYTHON" "$VENV_PATH"
10021003
else
1003-
virtualenv --no-site-packages --python "$LE_PYTHON" "$VENV_PATH" > /dev/null
1004+
VIRTUALENV_NO_DOWNLOAD=1 virtualenv --no-site-packages --python "$LE_PYTHON" "$VENV_PATH" \
1005+
> /dev/null
10041006
fi
10051007
else
10061008
if [ "$VERBOSE" = 1 ]; then
@@ -1230,18 +1232,18 @@ letsencrypt==0.7.0 \
12301232
--hash=sha256:105a5fb107e45bcd0722eb89696986dcf5f08a86a321d6aef25a0c7c63375ade \
12311233
--hash=sha256:c36e532c486a7e92155ee09da54b436a3c420813ec1c590b98f635d924720de9
12321234
1233-
certbot==0.30.0 \
1234-
--hash=sha256:b3468e128e74d2295598f6d3fbf9d0edfb67fe5abaca3b985a9e858395bd027f \
1235-
--hash=sha256:d631fe6c75700ce9b2fdae194ff8b53c7518545d87dd451a1704f7572dcd49e8
1236-
acme==0.30.0 \
1237-
--hash=sha256:eed9389f802ebf4988c9e43c28ad3d5c2734237371d78e97450a1d61189a15aa \
1238-
--hash=sha256:984b6d00bec73dcfa616636a760e80ca14bd246fb908710a656547f542f09445
1239-
certbot-apache==0.30.0 \
1240-
--hash=sha256:d38c70fc6930db298ea992a3145362eebdce460d3d2651f86a8f2f43d838c6d0 \
1241-
--hash=sha256:1d4bc207d53a3e5d37e5d9ebd05f26089aa21d1fbf384113ed9d1829b4d1e9bf
1242-
certbot-nginx==0.30.0 \
1243-
--hash=sha256:6163c7d0080f59b4ebe510afcc6af2d2eebf15469275c3835866690db4d465d6 \
1244-
--hash=sha256:e39a3f3d77cd4c653949cf066fb2211039fd2032665697c27b6e8501c7c2dd92
1235+
certbot==0.30.1 \
1236+
--hash=sha256:debdf5cfe17d55c124508a5f720e80094b82e87f167fb45cb6fda41482b6bd76 \
1237+
--hash=sha256:39d1a58d3b59c68e57e26bcb1b73078fc227c8944388e61646dd6bbb203618e7
1238+
acme==0.30.1 \
1239+
--hash=sha256:b75705eba723a6082c7bc8e41853407cb1520ce64d11359ba09b269db9356aed \
1240+
--hash=sha256:dc9b99bdbe1582993c96a8145354a61e79470be382d4d875990dd7d41727d3df
1241+
certbot-apache==0.30.1 \
1242+
--hash=sha256:18dae95e4785e2acdbe0b8d00db9e83b890ca8145f39092911f8ea9e1b0169b3 \
1243+
--hash=sha256:224cf83aeb85f7ca12ad08ddce020ff04576a692305f12ab1d1e7f21ee527180
1244+
certbot-nginx==0.30.1 \
1245+
--hash=sha256:2360e1e0e5b61c4078eced7889b90b85dc00dbc280461bf4e8fc4c3280bb3e52 \
1246+
--hash=sha256:4e15deba3542fcf5b98d021acfdfdea2ed93db0159824271a49694cc357de7f4
12451247
12461248
UNLIKELY_EOF
12471249
# -------------------------------------------------------------------------
@@ -1396,9 +1398,6 @@ def get_index_base():
13961398
def main():
13971399
pip_version = StrictVersion(check_output(['pip', '--version'])
13981400
.decode('utf-8').split()[1])
1399-
min_pip_version = StrictVersion(PIP_VERSION)
1400-
if pip_version >= min_pip_version:
1401-
return 0
14021401
has_pip_cache = pip_version >= StrictVersion('6.0')
14031402
index_base = get_index_base()
14041403
temp = mkdtemp(prefix='pipstrap-')
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
-----BEGIN PGP SIGNATURE-----
22

3-
iQEzBAABCAAdFiEEos+1H6J1pyhiNOeyTRfJlc2XdfIFAlwtH9cACgkQTRfJlc2X
4-
dfIqUwf/RXLZAeFF/59PjTAzcV+eEISlvEmFcV0zL3vv23PsY3S5Iuuwcd6rTm5M
5-
UWNtmUTmFVo0xmxAj6Eqfpnt0P+JPpPcnbLNIGKFekBWIshgH84RRFWPJjNh/hu1
6-
pyzkkcWaOB86egdVfjvuRJ0j7AGd0ih6ur2rlgfHVjTYR+0EdWszFDEFBlq8cpct
7-
9d1gCgH7VWKSIQMhzGLMsmdMxNoDl4hiqVPU0FP5/mn2xGF7FgeKNW3+NiTouKuB
8-
mZOeEl3f3uOze/suHPyfOu+49jk+TWWE05Xfqfowjf486nKPg6/uSA2izW/MwIKN
9-
HuIuY3bBf+lx5yUVIraoZhH2MxODDQ==
10-
=BZqz
3+
iQEzBAABCAAdFiEEos+1H6J1pyhiNOeyTRfJlc2XdfIFAlxKOFoACgkQTRfJlc2X
4+
dfI/ZAf+NpqBT6ieOTMt+Us/mBou82EEVZ4tEn6W+v5+nRWFv6pDZQof/A2EU+Ti
5+
QwUGc2CGPFhXwMxM5ASMnwJjYZ4fHZLUFTNrVXXV+lKXRXyT1jWH4D1iStCuvH/1
6+
l/fstEeH1csLH5VxBiMIfuiepowaqLmE6DDCjYdERfPoxS09WJftLzOJolDCpXmj
7+
XX0/EvS9MWfFznBqE23qRjaRNH0A+SVPlLjVffmIwQb2NIonSYinTt/7DnF9kO3J
8+
bSwVdEiLlTQyYgvblriWlsC/E2Tb0oY4exD3qE1WT6IgYaaMj75DMzqJHW1pw0RP
9+
mhC5E2wFsfutkeBgNjFrXiB83X9rcw==
10+
=W4KG
1111
-----END PGP SIGNATURE-----

0 commit comments

Comments
 (0)