1
0
mirror of https://github.com/certbot/certbot.git synced 2025-08-08 04:02:10 +03:00

Release 2.10.0

This commit is contained in:
Will Greenberg
2024-04-02 14:20:24 -07:00
parent cf77b3c3fa
commit 4d7d0d6d04
38 changed files with 50 additions and 19 deletions

View File

@@ -3,7 +3,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
'cryptography>=3.2.1', 'cryptography>=3.2.1',

View File

@@ -1,7 +1,7 @@
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
# We specify the minimum acme and certbot version as the current plugin # We specify the minimum acme and certbot version as the current plugin

View File

@@ -1,7 +1,7 @@
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
'certbot', 'certbot',

View File

@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
'cloudflare>=1.5.1', 'cloudflare>=1.5.1',

View File

@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
'python-digitalocean>=1.11', # 1.15.0 or newer is recommended for TTL support 'python-digitalocean>=1.11', # 1.15.0 or newer is recommended for TTL support

View File

@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
# This version of lexicon is required to address the problem described in # This version of lexicon is required to address the problem described in

View File

@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
'dns-lexicon>=3.14.1', 'dns-lexicon>=3.14.1',

View File

@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
'dns-lexicon>=3.14.1', 'dns-lexicon>=3.14.1',

View File

@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
'google-api-python-client>=1.6.5', 'google-api-python-client>=1.6.5',

View File

@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
'dns-lexicon>=3.14.1', 'dns-lexicon>=3.14.1',

View File

@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
'dns-lexicon>=3.14.1', 'dns-lexicon>=3.14.1',

View File

@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
'dns-lexicon>=3.14.1', 'dns-lexicon>=3.14.1',

View File

@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
'dns-lexicon>=3.15.1', 'dns-lexicon>=3.15.1',

View File

@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
'dnspython>=1.15.0', 'dnspython>=1.15.0',

View File

@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
'boto3>=1.15.15', 'boto3>=1.15.15',

View File

@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
'dns-lexicon>=3.14.1', 'dns-lexicon>=3.14.1',

View File

@@ -1,7 +1,7 @@
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.10.0.dev0' version = '2.10.0'
install_requires = [ install_requires = [
# We specify the minimum acme and certbot version as the current plugin # We specify the minimum acme and certbot version as the current plugin

View File

@@ -1,4 +1,4 @@
"""Certbot client.""" """Certbot client."""
# version number like 1.2.3a0, must have at least 2 parts, like 1.2 # version number like 1.2.3a0, must have at least 2 parts, like 1.2
__version__ = '2.10.0.dev0' __version__ = '2.10.0'

View File

@@ -122,7 +122,7 @@ options:
case, and to know when to deprecate support for past case, and to know when to deprecate support for past
Python versions and flags. If you wish to hide this Python versions and flags. If you wish to hide this
information from the Let's Encrypt server, set this to information from the Let's Encrypt server, set this to
"". (default: CertbotACMEClient/2.9.0 (certbot; "". (default: CertbotACMEClient/2.10.0 (certbot;
OS_NAME OS_VERSION) Authenticator/XXX Installer/YYY OS_NAME OS_VERSION) Authenticator/XXX Installer/YYY
(SUBCOMMAND; flags: FLAGS) Py/major.minor.patchlevel). (SUBCOMMAND; flags: FLAGS) Py/major.minor.patchlevel).
The flags encoded in the user agent are: --duplicate, The flags encoded in the user agent are: --duplicate,

17
packages/SHA256SUMS Normal file
View File

@@ -0,0 +1,17 @@
de110d6550f22094c920ad6022f4b329380a6bd8f58dd671135c6226c3a470cc acme-2.10.0.tar.gz
892aa57d4db74af174aec5e4bb7f7537b200de2545a066c049d03a53215f0e4e certbot-2.10.0.tar.gz
c7a46ff67eac2834a3e3b975e7a1d1bc7a7be889f51c2cdc87825abd5ccc825a certbot-apache-2.10.0.tar.gz
45b058c3e515a1853b33dcc3367c12978c0930990a563d26c879d9883a639c07 certbot-dns-cloudflare-2.10.0.tar.gz
4e2e0751884e5951533a06a582765814d9bac1faeb3a76b52c7f272ab7f991b0 certbot-dns-digitalocean-2.10.0.tar.gz
0ed483f93c95192432f1034646fb7e47684962f85fb30ecbd0628e0a6a7939bf certbot-dns-dnsimple-2.10.0.tar.gz
f087a11bdc81eaa2b1d32b7fb7b898dc481c2b9876b8d8cfa9f5b538b569c02c certbot-dns-dnsmadeeasy-2.10.0.tar.gz
669e7e550cde9664a1bcabd50c48967baff8674cf6a97253c1f45791209963cc certbot-dns-gehirn-2.10.0.tar.gz
626725a248726a387ef269107678976afde7ec3761c10671d7bf515cd7f47e99 certbot-dns-google-2.10.0.tar.gz
c856b7259c8f2bb1f4d1f25451288ea480d3be5506174e61232abab5fdd3e745 certbot-dns-linode-2.10.0.tar.gz
eecf6c720d1033b703e93ccae5b0cd33cea4870e5d08704deee705781114f5c7 certbot-dns-luadns-2.10.0.tar.gz
10cce872c88ccaca743fa7d23f330d99c6979dbc71f4f49556d492912f3984d6 certbot-dns-nsone-2.10.0.tar.gz
3261df25102e361ca2d7e82be8bad30536eca324d61dc8c95a24576fe4fab396 certbot-dns-ovh-2.10.0.tar.gz
4f9af6c58c994d1c95e0878a1b5bf6d1d44fbb31ebcce1209cdb68a4927aca10 certbot-dns-rfc2136-2.10.0.tar.gz
3bbe69cf7469ca2d826ba268dfb593348c41a4b1dd8af0cace665921b53d2ba7 certbot-dns-route53-2.10.0.tar.gz
788609aab8eee36745530e811e03cdb8f1680b95bc44e3661a85ec7f4c2917e8 certbot-dns-sakuracloud-2.10.0.tar.gz
9add7e8b7005fe6d8405cb74fd868d4b3689a572957a9112d654a5ac1e7f4d91 certbot-nginx-2.10.0.tar.gz

14
packages/SHA256SUMS.asc Normal file
View File

@@ -0,0 +1,14 @@
-----BEGIN PGP SIGNATURE-----
iQGzBAABCAAdFiEE8ocbQVKuE8SVGREfRHv2g6o7JsMFAmYMdoYACgkQRHv2g6o7
JsNrxQwAwdvLRWmDurj0T4s8Rs112OnJOPrMITkQ9XHRaADKEol4jcFdG9J6AwtM
vXWsRVbf4JJ6JNrHYHIS2fknjA/hHDjTpgccMnYeQMGTvOQ3V0T0MifmnJtEG69i
VnzR2G7DUDn3QJzVs6Bwp0rwK+9wBzYZXd0T+0MUweG+CZ5EiNxobz/AfRrgQbf6
npNmrCI1fkR2LFb3mTHsYF3j4gS5qfgwzChCReZgk+INSvhe8dgdPF6U18ibFxXM
2D1r89fkylQ5k2DVI8PTng+HKX0G8WFez/MGrZa2+yx2yiPKZVFh3AYjYXlAr5dU
ec7qHa3+xWsZpuTht8fCEb2bCagJB6tZUDLBZyd8pqxYSr8zAL0e1YpqpSbdvD11
BB4jetQ/mbuc3GSprTpodtZjWgR1uDxI9WKJug89cuGxM80yAWDZ1huF70ZVC8wr
BTJYrbOtaK+FC7SHGXgRRRVjXklPcvvB2YgRg7k3rLDIGw8EUGaFYGHbrzUo15RR
TWJnEEGZ
=xHDm
-----END PGP SIGNATURE-----

BIN
packages/acme-2.10.0.tar.gz Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.