From 43b053ef22fc94243336249dd6b590502de8b81b Mon Sep 17 00:00:00 2001 From: helgeerbe Date: Thu, 24 Nov 2022 14:38:19 +0100 Subject: [PATCH] Make plugin compliant for certbot 2.x --- README.rst | 6 ++++++ setup.py | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index e5cdd98..6c7cf42 100644 --- a/README.rst +++ b/README.rst @@ -135,6 +135,12 @@ chmod 700 /etc/letsencrypt/.secrets Changelog ========= +- 2022.11.24 + - remove zope to fix compatibility with Certbot 2.x (Fixes #19) + As a reminder, Certbot will default to issuing ECDSA certificates from release 2.0.0. + If you update from a prior certbot release, run the plugin once manually. You will be prompted + to update RSA key type to ECDSA. + - 2022.05.15 - Added capability to handle multiple domain validations #16 diff --git a/setup.py b/setup.py index 14ebd6a..1b98d63 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,11 @@ from setuptools import setup from setuptools import find_packages -version = "2022.05.15" +version = "2022.11.24" install_requires = [ "acme>=1.8.0", - "certbot>=0.31.0", + "certbot>=2.0.0", "setuptools", "requests", "mock",