diff -Nru python-certbot-dns-cloudflare-1.2.0/certbot_dns_cloudflare/_internal/dns_cloudflare.py python-certbot-dns-cloudflare-1.3.0/certbot_dns_cloudflare/_internal/dns_cloudflare.py --- python-certbot-dns-cloudflare-1.2.0/certbot_dns_cloudflare/_internal/dns_cloudflare.py 2020-02-04 21:46:57.000000000 +0000 +++ python-certbot-dns-cloudflare-1.3.0/certbot_dns_cloudflare/_internal/dns_cloudflare.py 2020-03-03 20:36:35.000000000 +0000 @@ -38,7 +38,7 @@ super(Authenticator, cls).add_parser_arguments(add) add('credentials', help='Cloudflare credentials INI file.') - def more_info(self): # pylint: disable=missing-docstring,no-self-use + def more_info(self): # pylint: disable=missing-function-docstring return 'This plugin configures a DNS TXT record to respond to a dns-01 challenge using ' + \ 'the Cloudflare API.' diff -Nru python-certbot-dns-cloudflare-1.2.0/certbot_dns_cloudflare.egg-info/PKG-INFO python-certbot-dns-cloudflare-1.3.0/certbot_dns_cloudflare.egg-info/PKG-INFO --- python-certbot-dns-cloudflare-1.2.0/certbot_dns_cloudflare.egg-info/PKG-INFO 2020-02-04 21:47:10.000000000 +0000 +++ python-certbot-dns-cloudflare-1.3.0/certbot_dns_cloudflare.egg-info/PKG-INFO 2020-03-03 20:36:50.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: certbot-dns-cloudflare -Version: 1.2.0 +Version: 1.3.0 Summary: Cloudflare DNS Authenticator plugin for Certbot Home-page: https://github.com/certbot/certbot Author: Certbot Project diff -Nru python-certbot-dns-cloudflare-1.2.0/debian/changelog python-certbot-dns-cloudflare-1.3.0/debian/changelog --- python-certbot-dns-cloudflare-1.2.0/debian/changelog 2020-02-25 02:55:55.000000000 +0000 +++ python-certbot-dns-cloudflare-1.3.0/debian/changelog 2020-04-27 23:17:10.000000000 +0000 @@ -1,3 +1,10 @@ +python-certbot-dns-cloudflare (1.3.0-1) unstable; urgency=medium + + * New upstream release. + * Switch to Provides based ABI compatibility. + + -- Harlan Lieberman-Berg Mon, 27 Apr 2020 19:17:10 -0400 + python-certbot-dns-cloudflare (1.2.0-1) unstable; urgency=medium * New upstream release. diff -Nru python-certbot-dns-cloudflare-1.2.0/debian/control python-certbot-dns-cloudflare-1.3.0/debian/control --- python-certbot-dns-cloudflare-1.2.0/debian/control 2020-02-25 02:55:44.000000000 +0000 +++ python-certbot-dns-cloudflare-1.3.0/debian/control 2020-04-27 23:16:50.000000000 +0000 @@ -7,8 +7,8 @@ Build-Depends: debhelper-compat (= 12), dh-python, python3, - python3-acme (>= 0.29.0~), - python3-certbot (>= 1.1.0~), + python3-acme-abi-1, + python3-certbot-abi-1 (>= 1.1), python3-cloudflare (>= 1.5.1~), python3-mock, python3-pytest, @@ -25,7 +25,7 @@ Package: python3-certbot-dns-cloudflare Architecture: all -Depends: certbot (>= 1.1.0~), ${misc:Depends}, ${python3:Depends} +Depends: certbot, python3-certbot-abi-1 (>= 1.1), ${misc:Depends}, ${python3:Depends} Enhances: certbot Description: Cloudflare DNS plugin for Certbot The objective of Certbot, Let's Encrypt, and the ACME (Automated diff -Nru python-certbot-dns-cloudflare-1.2.0/docs/conf.py python-certbot-dns-cloudflare-1.3.0/docs/conf.py --- python-certbot-dns-cloudflare-1.2.0/docs/conf.py 2020-02-04 21:46:57.000000000 +0000 +++ python-certbot-dns-cloudflare-1.3.0/docs/conf.py 2020-03-03 20:36:35.000000000 +0000 @@ -84,7 +84,7 @@ pygments_style = 'sphinx' # If true, `todo` and `todoList` produce output, else they produce nothing. -todo_include_todos = True +todo_include_todos = False # -- Options for HTML output ---------------------------------------------- diff -Nru python-certbot-dns-cloudflare-1.2.0/PKG-INFO python-certbot-dns-cloudflare-1.3.0/PKG-INFO --- python-certbot-dns-cloudflare-1.2.0/PKG-INFO 2020-02-04 21:47:10.000000000 +0000 +++ python-certbot-dns-cloudflare-1.3.0/PKG-INFO 2020-03-03 20:36:50.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: certbot-dns-cloudflare -Version: 1.2.0 +Version: 1.3.0 Summary: Cloudflare DNS Authenticator plugin for Certbot Home-page: https://github.com/certbot/certbot Author: Certbot Project diff -Nru python-certbot-dns-cloudflare-1.2.0/setup.py python-certbot-dns-cloudflare-1.3.0/setup.py --- python-certbot-dns-cloudflare-1.2.0/setup.py 2020-02-04 21:46:58.000000000 +0000 +++ python-certbot-dns-cloudflare-1.3.0/setup.py 2020-03-03 20:36:38.000000000 +0000 @@ -4,7 +4,7 @@ from setuptools import setup from setuptools.command.test import test as TestCommand -version = '1.2.0' +version = '1.3.0' # Remember to update local-oldest-requirements.txt when changing the minimum # acme/certbot version.