Skip to content

Commit

Permalink
Make plugin compliant for certbot 2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
helgeerbe committed Nov 24, 2022
1 parent ee3af96 commit 43b053e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 43b053e

Please sign in to comment.