From 39b396763aeaee10dcdbda656fa040e2a2f03956 Mon Sep 17 00:00:00 2001 From: alexzorin Date: Wed, 26 May 2021 01:40:18 +1000 Subject: [PATCH] apache/nginx: certbot>=1.10.0 -> 1.10.1 (#8859) 1.10.0 was a bad release and this breaks our oldest Boulder tests. I bumped the version to 1.10.0 in #8852 to get access to a new public display_util API, but that was the release with the broken deprecation of `--manual-public-ip-logging-ok`. So let's bump it to 1.10.1. --- certbot-apache/local-oldest-requirements.txt | 2 +- certbot-apache/setup.py | 2 +- certbot-nginx/local-oldest-requirements.txt | 2 +- certbot-nginx/setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/certbot-apache/local-oldest-requirements.txt b/certbot-apache/local-oldest-requirements.txt index 2631bc8cc..323e315f1 100644 --- a/certbot-apache/local-oldest-requirements.txt +++ b/certbot-apache/local-oldest-requirements.txt @@ -1,3 +1,3 @@ # Remember to update setup.py to match the package versions below. acme[dev]==1.8.0 -certbot[dev]==1.10.0 +certbot[dev]==1.10.1 diff --git a/certbot-apache/setup.py b/certbot-apache/setup.py index dc27c9a96..d780cb723 100644 --- a/certbot-apache/setup.py +++ b/certbot-apache/setup.py @@ -7,7 +7,7 @@ version = '1.16.0.dev0' # acme/certbot version. install_requires = [ 'acme>=1.8.0', - 'certbot>=1.10.0', + 'certbot>=1.10.1', 'python-augeas', 'setuptools>=39.0.1', 'zope.component', diff --git a/certbot-nginx/local-oldest-requirements.txt b/certbot-nginx/local-oldest-requirements.txt index 2631bc8cc..323e315f1 100644 --- a/certbot-nginx/local-oldest-requirements.txt +++ b/certbot-nginx/local-oldest-requirements.txt @@ -1,3 +1,3 @@ # Remember to update setup.py to match the package versions below. acme[dev]==1.8.0 -certbot[dev]==1.10.0 +certbot[dev]==1.10.1 diff --git a/certbot-nginx/setup.py b/certbot-nginx/setup.py index cb5fa262b..96d8f7f1b 100644 --- a/certbot-nginx/setup.py +++ b/certbot-nginx/setup.py @@ -7,7 +7,7 @@ version = '1.16.0.dev0' # acme/certbot version. install_requires = [ 'acme>=1.8.0', - 'certbot>=1.10.0', + 'certbot>=1.10.1', 'PyOpenSSL>=17.3.0', 'pyparsing>=2.2.0', 'setuptools>=39.0.1',