Skip to content

Commit dcadcf8

Browse files
committed
Release 0.8.0
1 parent 576bc90 commit dcadcf8

File tree

12 files changed

+63
-63
lines changed

12 files changed

+63
-63
lines changed

acme/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.8.0.dev0'
7+
version = '0.8.0'
88

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

certbot-apache/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.8.0.dev0'
7+
version = '0.8.0'
88

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

certbot-auto

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ XDG_DATA_HOME=${XDG_DATA_HOME:-~/.local/share}
1919
VENV_NAME="letsencrypt"
2020
VENV_PATH=${VENV_PATH:-"$XDG_DATA_HOME/$VENV_NAME"}
2121
VENV_BIN="$VENV_PATH/bin"
22-
LE_AUTO_VERSION="0.7.0"
22+
LE_AUTO_VERSION="0.8.0"
2323
BASENAME=$(basename $0)
2424
USAGE="Usage: $BASENAME [OPTIONS]
2525
A self-updating wrapper script for the Certbot ACME client. When run, updates
@@ -713,24 +713,21 @@ zope.interface==4.1.3 \
713713
mock==1.0.1 \
714714
--hash=sha256:b839dd2d9c117c701430c149956918a423a9863b48b09c90e30a6013e7d2f44f \
715715
--hash=sha256:8f83080daa249d036cbccfb8ae5cc6ff007b88d6d937521371afabe7b19badbc
716-
717-
# THE LINES BELOW ARE EDITED BY THE RELEASE SCRIPT; ADD ALL DEPENDENCIES ABOVE.
718-
719-
acme==0.7.0 \
720-
--hash=sha256:6e61dba343806ad4cb27af84628152abc9e83a0fa24be6065587d2b46f340d7a \
721-
--hash=sha256:9f75a1947978402026b741bdee8a18fc5a1cfd539b78e523b7e5f279bf18eeb9
722-
certbot==0.7.0 \
723-
--hash=sha256:55604e43d231ac226edefed8dc110d792052095c3d75ad0e4a228ae0989fe5fd \
724-
--hash=sha256:ad5083d75e16d1ab806802d3a32f34973b6d7adaf083aee87e07a6c1359efe88
725-
certbot-apache==0.7.0 \
726-
--hash=sha256:5ab5ed9b2af6c7db9495ce1491122798e9d0764e3df8f0843d11d89690bf7f88 \
727-
--hash=sha256:1ddbfaf01bcb0b05c0dcc8b2ebd37637f080cf798151e8140c20c9f5fe7bae75
728716
letsencrypt==0.7.0 \
729717
--hash=sha256:105a5fb107e45bcd0722eb89696986dcf5f08a86a321d6aef25a0c7c63375ade \
730718
--hash=sha256:c36e532c486a7e92155ee09da54b436a3c420813ec1c590b98f635d924720de9
731-
letsencrypt-apache==0.7.0 \
732-
--hash=sha256:10445980a6afc810325ea22a56e269229999120848f6c0b323b00275696b5c80 \
733-
--hash=sha256:3f4656088a18e4efea7cd7eb4965e14e8d901f3b64f4691e79cafd0bb91890f0
719+
720+
# THE LINES BELOW ARE EDITED BY THE RELEASE SCRIPT; ADD ALL DEPENDENCIES ABOVE.
721+
722+
acme==0.8.0 \
723+
--hash=sha256:8561d590e496afb41a8ff2dac389199661d9cd785b1636ae08325771511189af \
724+
--hash=sha256:dfa86b547628b231f275c7e0efc7a09bec5dfaec866f89f5c5b59b78c14564da
725+
certbot==0.8.0 \
726+
--hash=sha256:395c5840ff6b75aa51ee6449c86d016c14c5f65a71281e7bcef5feecac6a3293 \
727+
--hash=sha256:3c3c70b484fb3243a166515adc81ae0401c5d687a2763c75b40df9d8241a4314
728+
certbot-apache==0.8.0 \
729+
--hash=sha256:f4d4fc962ecc19646f6745d49c62a265d26e5b2df3acf34ef4865351594156e3 \
730+
--hash=sha256:cfb211debbcb0d0645c88d7e8bb38c591fca263bfdb5337242c023956055e268
734731
735732
UNLIKELY_EOF
736733
# -------------------------------------------------------------------------

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.8.0.dev0'
7+
version = '0.8.0'
88

99
install_requires = [
1010
'certbot=={0}'.format(version),

certbot-nginx/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.8.0.dev0'
7+
version = '0.8.0'
88

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

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.8.0.dev0'
4+
__version__ = '0.8.0'

docs/cli-help.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ cert. Major SUBCOMMANDS are:
1010
install Install a previously obtained cert in a server
1111
renew Renew previously obtained certs that are near expiry
1212
revoke Revoke a previously obtained certificate
13+
register Perform tasks related to registering with the CA
1314
rollback Rollback server configuration changes made during install
1415
config_changes Show changes made to server config during installation
1516
plugins Display information about installed plugins
@@ -53,6 +54,11 @@ optional arguments:
5354
to the Subscriber Agreement will still affect you, and
5455
will be effective 14 days after posting an update to
5556
the web site. (default: False)
57+
--update-registration
58+
With the register verb, indicates that details
59+
associated with an existing registration, such as the
60+
e-mail address, should be updated, rather than
61+
registering a new account. (default: False)
5662
-m EMAIL, --email EMAIL
5763
Email used for registration and recovery contact.
5864
(default: None)

letsencrypt-auto

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ XDG_DATA_HOME=${XDG_DATA_HOME:-~/.local/share}
1919
VENV_NAME="letsencrypt"
2020
VENV_PATH=${VENV_PATH:-"$XDG_DATA_HOME/$VENV_NAME"}
2121
VENV_BIN="$VENV_PATH/bin"
22-
LE_AUTO_VERSION="0.7.0"
22+
LE_AUTO_VERSION="0.8.0"
2323
BASENAME=$(basename $0)
2424
USAGE="Usage: $BASENAME [OPTIONS]
2525
A self-updating wrapper script for the Certbot ACME client. When run, updates
@@ -713,24 +713,21 @@ zope.interface==4.1.3 \
713713
mock==1.0.1 \
714714
--hash=sha256:b839dd2d9c117c701430c149956918a423a9863b48b09c90e30a6013e7d2f44f \
715715
--hash=sha256:8f83080daa249d036cbccfb8ae5cc6ff007b88d6d937521371afabe7b19badbc
716-
717-
# THE LINES BELOW ARE EDITED BY THE RELEASE SCRIPT; ADD ALL DEPENDENCIES ABOVE.
718-
719-
acme==0.7.0 \
720-
--hash=sha256:6e61dba343806ad4cb27af84628152abc9e83a0fa24be6065587d2b46f340d7a \
721-
--hash=sha256:9f75a1947978402026b741bdee8a18fc5a1cfd539b78e523b7e5f279bf18eeb9
722-
certbot==0.7.0 \
723-
--hash=sha256:55604e43d231ac226edefed8dc110d792052095c3d75ad0e4a228ae0989fe5fd \
724-
--hash=sha256:ad5083d75e16d1ab806802d3a32f34973b6d7adaf083aee87e07a6c1359efe88
725-
certbot-apache==0.7.0 \
726-
--hash=sha256:5ab5ed9b2af6c7db9495ce1491122798e9d0764e3df8f0843d11d89690bf7f88 \
727-
--hash=sha256:1ddbfaf01bcb0b05c0dcc8b2ebd37637f080cf798151e8140c20c9f5fe7bae75
728716
letsencrypt==0.7.0 \
729717
--hash=sha256:105a5fb107e45bcd0722eb89696986dcf5f08a86a321d6aef25a0c7c63375ade \
730718
--hash=sha256:c36e532c486a7e92155ee09da54b436a3c420813ec1c590b98f635d924720de9
731-
letsencrypt-apache==0.7.0 \
732-
--hash=sha256:10445980a6afc810325ea22a56e269229999120848f6c0b323b00275696b5c80 \
733-
--hash=sha256:3f4656088a18e4efea7cd7eb4965e14e8d901f3b64f4691e79cafd0bb91890f0
719+
720+
# THE LINES BELOW ARE EDITED BY THE RELEASE SCRIPT; ADD ALL DEPENDENCIES ABOVE.
721+
722+
acme==0.8.0 \
723+
--hash=sha256:8561d590e496afb41a8ff2dac389199661d9cd785b1636ae08325771511189af \
724+
--hash=sha256:dfa86b547628b231f275c7e0efc7a09bec5dfaec866f89f5c5b59b78c14564da
725+
certbot==0.8.0 \
726+
--hash=sha256:395c5840ff6b75aa51ee6449c86d016c14c5f65a71281e7bcef5feecac6a3293 \
727+
--hash=sha256:3c3c70b484fb3243a166515adc81ae0401c5d687a2763c75b40df9d8241a4314
728+
certbot-apache==0.8.0 \
729+
--hash=sha256:f4d4fc962ecc19646f6745d49c62a265d26e5b2df3acf34ef4865351594156e3 \
730+
--hash=sha256:cfb211debbcb0d0645c88d7e8bb38c591fca263bfdb5337242c023956055e268
734731
735732
UNLIKELY_EOF
736733
# -------------------------------------------------------------------------
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
-----BEGIN PGP SIGNATURE-----
22
Version: GnuPG v1
33

4-
iQEcBAABAgAGBQJXSK5DAAoJEE0XyZXNl3Xyyb4H/Ahy9/8ADDaN5V/O/6kl6gE5
5-
amQfm8T10EUD8APnNWYrYKBYruDBVvH0KiEcuAEs7q4xE5BaQatlobSnsHfv4AWW
6-
TwInk2lRxYZ++MwwQf3DrqMK5QKfcoVnViZsRpZ8gHMLzsJllRm7R5eaTewO2ViM
7-
KM+yDB3UsquLUvE4d3/hgBl2mXAUwsxLeFreZayvpoTcX2ARnzbtKqMaIBYDYWcx
8-
DewWtDsPrhKFpb2DY06S6JLmEttysUgv+hbKlaVO0yZ8cCUehkzBIGYoeS4chOLq
9-
fonNCzB8u3RtnLEFiPIy0N+A592jbLsqqUkxjammaJq3lH7nitduMLnpvGKt4yc=
10-
=ex1J
4+
iQEcBAABAgAGBQJXUJvwAAoJEE0XyZXNl3XyvKsH/3qn7Xa/GQx3HvB6Io/Csn/E
5+
v1nbUg5RPwvrTyyol8BJ6UrHiJw+gTbUgCAnBkZ7DYKaC8AQmQXVRcWXNALMMTzB
6+
6LpBXjQQ2xrBYamGj70N7KnTM1QmxI96GUQouiHMJVugV4uihKJDjtR8/f2JWKok
7+
ZSox6E4LqC45HzqLWiOqc13TrHbti32Mo8DyC63PBnSwMnypGLK6XcqM0L9Re62W
8+
smoKu1VWKwWZYRYXIQr0dvK4JmVTrIsdASdZkhTC/vc8y4tGkdN0DcF2EHzci6OA
9+
Tx0W+Ao+HM1ZcaaH3BJ1y3kYfT+mlt6o4OaK3UB/wtUzMmVih7l1UeiNkVL0oYk=
10+
=t3L6
1111
-----END PGP SIGNATURE-----

letsencrypt-auto-source/letsencrypt-auto

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ XDG_DATA_HOME=${XDG_DATA_HOME:-~/.local/share}
1919
VENV_NAME="letsencrypt"
2020
VENV_PATH=${VENV_PATH:-"$XDG_DATA_HOME/$VENV_NAME"}
2121
VENV_BIN="$VENV_PATH/bin"
22-
LE_AUTO_VERSION="0.8.0.dev0"
22+
LE_AUTO_VERSION="0.8.0"
2323
BASENAME=$(basename $0)
2424
USAGE="Usage: $BASENAME [OPTIONS]
2525
A self-updating wrapper script for the Certbot ACME client. When run, updates
@@ -719,15 +719,15 @@ letsencrypt==0.7.0 \
719719
720720
# THE LINES BELOW ARE EDITED BY THE RELEASE SCRIPT; ADD ALL DEPENDENCIES ABOVE.
721721
722-
acme==0.7.0 \
723-
--hash=sha256:6e61dba343806ad4cb27af84628152abc9e83a0fa24be6065587d2b46f340d7a \
724-
--hash=sha256:9f75a1947978402026b741bdee8a18fc5a1cfd539b78e523b7e5f279bf18eeb9
725-
certbot==0.7.0 \
726-
--hash=sha256:55604e43d231ac226edefed8dc110d792052095c3d75ad0e4a228ae0989fe5fd \
727-
--hash=sha256:ad5083d75e16d1ab806802d3a32f34973b6d7adaf083aee87e07a6c1359efe88
728-
certbot-apache==0.7.0 \
729-
--hash=sha256:5ab5ed9b2af6c7db9495ce1491122798e9d0764e3df8f0843d11d89690bf7f88 \
730-
--hash=sha256:1ddbfaf01bcb0b05c0dcc8b2ebd37637f080cf798151e8140c20c9f5fe7bae75
722+
acme==0.8.0 \
723+
--hash=sha256:8561d590e496afb41a8ff2dac389199661d9cd785b1636ae08325771511189af \
724+
--hash=sha256:dfa86b547628b231f275c7e0efc7a09bec5dfaec866f89f5c5b59b78c14564da
725+
certbot==0.8.0 \
726+
--hash=sha256:395c5840ff6b75aa51ee6449c86d016c14c5f65a71281e7bcef5feecac6a3293 \
727+
--hash=sha256:3c3c70b484fb3243a166515adc81ae0401c5d687a2763c75b40df9d8241a4314
728+
certbot-apache==0.8.0 \
729+
--hash=sha256:f4d4fc962ecc19646f6745d49c62a265d26e5b2df3acf34ef4865351594156e3 \
730+
--hash=sha256:cfb211debbcb0d0645c88d7e8bb38c591fca263bfdb5337242c023956055e268
731731
732732
UNLIKELY_EOF
733733
# -------------------------------------------------------------------------
0 Bytes
Binary file not shown.

letsencrypt-auto-source/pieces/letsencrypt-auto-requirements.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -181,12 +181,12 @@ letsencrypt==0.7.0 \
181181

182182
# THE LINES BELOW ARE EDITED BY THE RELEASE SCRIPT; ADD ALL DEPENDENCIES ABOVE.
183183

184-
acme==0.7.0 \
185-
--hash=sha256:6e61dba343806ad4cb27af84628152abc9e83a0fa24be6065587d2b46f340d7a \
186-
--hash=sha256:9f75a1947978402026b741bdee8a18fc5a1cfd539b78e523b7e5f279bf18eeb9
187-
certbot==0.7.0 \
188-
--hash=sha256:55604e43d231ac226edefed8dc110d792052095c3d75ad0e4a228ae0989fe5fd \
189-
--hash=sha256:ad5083d75e16d1ab806802d3a32f34973b6d7adaf083aee87e07a6c1359efe88
190-
certbot-apache==0.7.0 \
191-
--hash=sha256:5ab5ed9b2af6c7db9495ce1491122798e9d0764e3df8f0843d11d89690bf7f88 \
192-
--hash=sha256:1ddbfaf01bcb0b05c0dcc8b2ebd37637f080cf798151e8140c20c9f5fe7bae75
184+
acme==0.8.0 \
185+
--hash=sha256:8561d590e496afb41a8ff2dac389199661d9cd785b1636ae08325771511189af \
186+
--hash=sha256:dfa86b547628b231f275c7e0efc7a09bec5dfaec866f89f5c5b59b78c14564da
187+
certbot==0.8.0 \
188+
--hash=sha256:395c5840ff6b75aa51ee6449c86d016c14c5f65a71281e7bcef5feecac6a3293 \
189+
--hash=sha256:3c3c70b484fb3243a166515adc81ae0401c5d687a2763c75b40df9d8241a4314
190+
certbot-apache==0.8.0 \
191+
--hash=sha256:f4d4fc962ecc19646f6745d49c62a265d26e5b2df3acf34ef4865351594156e3 \
192+
--hash=sha256:cfb211debbcb0d0645c88d7e8bb38c591fca263bfdb5337242c023956055e268

0 commit comments

Comments
 (0)