commit python-certbot-dns-dnsmadeeasy for openSUSE:Leap:15.2

2020-05-21 Thread root
Hello community,

here is the log from the commit of package python-certbot-dns-dnsmadeeasy for 
openSUSE:Leap:15.2 checked in at 2020-05-21 12:59:20

Comparing /work/SRC/openSUSE:Leap:15.2/python-certbot-dns-dnsmadeeasy (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.python-certbot-dns-dnsmadeeasy.new.2738 
(New)


Package is "python-certbot-dns-dnsmadeeasy"

Thu May 21 12:59:20 2020 rev:8 rq:806135 version:1.4.0

Changes:

--- 
/work/SRC/openSUSE:Leap:15.2/python-certbot-dns-dnsmadeeasy/python-certbot-dns-dnsmadeeasy.changes
  2020-03-15 07:13:17.249032274 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.python-certbot-dns-dnsmadeeasy.new.2738/python-certbot-dns-dnsmadeeasy.changes
2020-05-21 12:59:21.262797009 +0200
@@ -1,0 +2,6 @@
+Thu May 14 08:50:23 UTC 2020 - Marketa Calabkova 
+
+- update to version 1.4.0
+  * Sync with main certbot package.
+
+---

Old:

  certbot-dns-dnsmadeeasy-1.3.0.tar.gz

New:

  certbot-dns-dnsmadeeasy-1.4.0.tar.gz



Other differences:
--
++ python-certbot-dns-dnsmadeeasy.spec ++
--- /var/tmp/diff_new_pack.MCkF3K/_old  2020-05-21 12:59:21.570797680 +0200
+++ /var/tmp/diff_new_pack.MCkF3K/_new  2020-05-21 12:59:21.574797689 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-certbot-dns-dnsmadeeasy
-Version:1.3.0
+Version:1.4.0
 Release:0
 Summary:DNS Made Easy Authenticator plugin for Certbot
 License:Apache-2.0

++ certbot-dns-dnsmadeeasy-1.3.0.tar.gz -> 
certbot-dns-dnsmadeeasy-1.4.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-dns-dnsmadeeasy-1.3.0/PKG-INFO 
new/certbot-dns-dnsmadeeasy-1.4.0/PKG-INFO
--- old/certbot-dns-dnsmadeeasy-1.3.0/PKG-INFO  2020-03-03 21:37:00.0 
+0100
+++ new/certbot-dns-dnsmadeeasy-1.4.0/PKG-INFO  2020-05-05 21:38:00.203916300 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-dns-dnsmadeeasy
-Version: 1.3.0
+Version: 1.4.0
 Summary: DNS Made Easy DNS Authenticator plugin for Certbot
 Home-page: https://github.com/certbot/certbot
 Author: Certbot Project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-dnsmadeeasy-1.3.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO 
new/certbot-dns-dnsmadeeasy-1.4.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO
--- old/certbot-dns-dnsmadeeasy-1.3.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO 
2020-03-03 21:37:00.0 +0100
+++ new/certbot-dns-dnsmadeeasy-1.4.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO 
2020-05-05 21:38:00.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-dns-dnsmadeeasy
-Version: 1.3.0
+Version: 1.4.0
 Summary: DNS Made Easy DNS Authenticator plugin for Certbot
 Home-page: https://github.com/certbot/certbot
 Author: Certbot Project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-dnsmadeeasy-1.3.0/certbot_dns_dnsmadeeasy.egg-info/requires.txt 
new/certbot-dns-dnsmadeeasy-1.4.0/certbot_dns_dnsmadeeasy.egg-info/requires.txt
--- 
old/certbot-dns-dnsmadeeasy-1.3.0/certbot_dns_dnsmadeeasy.egg-info/requires.txt 
2020-03-03 21:37:00.0 +0100
+++ 
new/certbot-dns-dnsmadeeasy-1.4.0/certbot_dns_dnsmadeeasy.egg-info/requires.txt 
2020-05-05 21:38:00.0 +0200
@@ -1,10 +1,12 @@
 acme>=0.31.0
 certbot>=1.1.0
 dns-lexicon>=2.2.1
-mock
 setuptools
 zope.interface
 
+[:python_version < "3.3"]
+mock
+
 [docs]
 Sphinx>=1.0
 sphinx_rtd_theme
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-dns-dnsmadeeasy-1.3.0/setup.py 
new/certbot-dns-dnsmadeeasy-1.4.0/setup.py
--- old/certbot-dns-dnsmadeeasy-1.3.0/setup.py  2020-03-03 21:36:38.0 
+0100
+++ new/certbot-dns-dnsmadeeasy-1.4.0/setup.py  2020-05-05 21:37:34.0 
+0200
@@ -1,10 +1,12 @@
+from distutils.version import StrictVersion
 import sys
 
+from setuptools import __version__ as setuptools_version
 from setuptools import find_packages
 from setuptools import setup
 from setuptools.command.test import test as TestCommand
 
-version = '1.3.0'
+version = '1.4.0'
 
 # Remember to update local-oldest-requirements.txt when changing the minimum
 # acme/certbot version.
@@ -12,11 +14,19 @@
 'acme>=0.31.0',
 'certbot>=1.1.0',
 'dns-lexicon>=2.2.1',  # Support for >1 TXT record per name
-'mock',
 'setuptools',
 'zope.interface',
 ]
 
+setuptools_known_environment_markers = (StrictVersion(setuptools_version) >= 
StrictVersion('36.2'))
+if setuptools_known_environment_markers:
+install_requires.append('mock ; python_versio

commit python-certbot-dns-dnsmadeeasy for openSUSE:Leap:15.2

2020-03-14 Thread root
Hello community,

here is the log from the commit of package python-certbot-dns-dnsmadeeasy for 
openSUSE:Leap:15.2 checked in at 2020-03-15 07:13:11

Comparing /work/SRC/openSUSE:Leap:15.2/python-certbot-dns-dnsmadeeasy (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.python-certbot-dns-dnsmadeeasy.new.3160 
(New)


Package is "python-certbot-dns-dnsmadeeasy"

Sun Mar 15 07:13:11 2020 rev:7 rq:784975 version:1.3.0

Changes:

--- 
/work/SRC/openSUSE:Leap:15.2/python-certbot-dns-dnsmadeeasy/python-certbot-dns-dnsmadeeasy.changes
  2020-02-27 06:41:55.377662046 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.python-certbot-dns-dnsmadeeasy.new.3160/python-certbot-dns-dnsmadeeasy.changes
2020-03-15 07:13:17.249032274 +0100
@@ -1,0 +2,6 @@
+Wed Mar 11 13:44:43 UTC 2020 - Marketa Calabkova 
+
+- update to version 1.3.0
+  * Sync with main certbot package.
+
+---

Old:

  certbot-dns-dnsmadeeasy-1.2.0.tar.gz

New:

  certbot-dns-dnsmadeeasy-1.3.0.tar.gz



Other differences:
--
++ python-certbot-dns-dnsmadeeasy.spec ++
--- /var/tmp/diff_new_pack.5gARvb/_old  2020-03-15 07:13:17.589032452 +0100
+++ /var/tmp/diff_new_pack.5gARvb/_new  2020-03-15 07:13:17.589032452 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-certbot-dns-dnsmadeeasy
-Version:1.2.0
+Version:1.3.0
 Release:0
 Summary:DNS Made Easy Authenticator plugin for Certbot
 License:Apache-2.0

++ certbot-dns-dnsmadeeasy-1.2.0.tar.gz -> 
certbot-dns-dnsmadeeasy-1.3.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-dns-dnsmadeeasy-1.2.0/PKG-INFO 
new/certbot-dns-dnsmadeeasy-1.3.0/PKG-INFO
--- old/certbot-dns-dnsmadeeasy-1.2.0/PKG-INFO  2020-02-04 22:47:18.0 
+0100
+++ new/certbot-dns-dnsmadeeasy-1.3.0/PKG-INFO  2020-03-03 21:37:00.0 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-dns-dnsmadeeasy
-Version: 1.2.0
+Version: 1.3.0
 Summary: DNS Made Easy DNS Authenticator plugin for Certbot
 Home-page: https://github.com/certbot/certbot
 Author: Certbot Project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-dnsmadeeasy-1.2.0/certbot_dns_dnsmadeeasy/_internal/dns_dnsmadeeasy.py
 
new/certbot-dns-dnsmadeeasy-1.3.0/certbot_dns_dnsmadeeasy/_internal/dns_dnsmadeeasy.py
--- 
old/certbot-dns-dnsmadeeasy-1.2.0/certbot_dns_dnsmadeeasy/_internal/dns_dnsmadeeasy.py
  2020-02-04 22:46:57.0 +0100
+++ 
new/certbot-dns-dnsmadeeasy-1.3.0/certbot_dns_dnsmadeeasy/_internal/dns_dnsmadeeasy.py
  2020-03-03 21:36:35.0 +0100
@@ -35,7 +35,7 @@
 super(Authenticator, cls).add_parser_arguments(add, 
default_propagation_seconds=60)
 add('credentials', help='DNS Made Easy 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 DNS Made Easy API.'
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-dnsmadeeasy-1.2.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO 
new/certbot-dns-dnsmadeeasy-1.3.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO
--- old/certbot-dns-dnsmadeeasy-1.2.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO 
2020-02-04 22:47:18.0 +0100
+++ new/certbot-dns-dnsmadeeasy-1.3.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO 
2020-03-03 21:37:00.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-dns-dnsmadeeasy
-Version: 1.2.0
+Version: 1.3.0
 Summary: DNS Made Easy DNS Authenticator plugin for Certbot
 Home-page: https://github.com/certbot/certbot
 Author: Certbot Project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-dns-dnsmadeeasy-1.2.0/docs/conf.py 
new/certbot-dns-dnsmadeeasy-1.3.0/docs/conf.py
--- old/certbot-dns-dnsmadeeasy-1.2.0/docs/conf.py  2020-02-04 
22:46:57.0 +0100
+++ new/certbot-dns-dnsmadeeasy-1.3.0/docs/conf.py  2020-03-03 
21:36:35.0 +0100
@@ -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 -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-dns-dnsmadeeasy-1.2.0/setup.py 
new/certbot-dns-dnsmadeeasy-1.3.0/setu

commit python-certbot-dns-dnsmadeeasy for openSUSE:Leap:15.2

2020-02-26 Thread root
Hello community,

here is the log from the commit of package python-certbot-dns-dnsmadeeasy for 
openSUSE:Leap:15.2 checked in at 2020-02-27 06:41:55

Comparing /work/SRC/openSUSE:Leap:15.2/python-certbot-dns-dnsmadeeasy (Old)
 and  
/work/SRC/openSUSE:Leap:15.2/.python-certbot-dns-dnsmadeeasy.new.26092 (New)


Package is "python-certbot-dns-dnsmadeeasy"

Thu Feb 27 06:41:55 2020 rev:6 rq:779451 version:1.2.0

Changes:

--- 
/work/SRC/openSUSE:Leap:15.2/python-certbot-dns-dnsmadeeasy/python-certbot-dns-dnsmadeeasy.changes
  2020-02-19 18:48:34.339022324 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.python-certbot-dns-dnsmadeeasy.new.26092/python-certbot-dns-dnsmadeeasy.changes
   2020-02-27 06:41:55.377662046 +0100
@@ -1,0 +2,6 @@
+Fri Feb 21 15:33:33 UTC 2020 - Marketa Calabkova 
+
+- update to version 1.2.0
+  * Sync with main certbot package.
+
+---

Old:

  certbot-dns-dnsmadeeasy-1.1.0.tar.gz

New:

  certbot-dns-dnsmadeeasy-1.2.0.tar.gz



Other differences:
--
++ python-certbot-dns-dnsmadeeasy.spec ++
--- /var/tmp/diff_new_pack.wJuVwM/_old  2020-02-27 06:41:55.665662646 +0100
+++ /var/tmp/diff_new_pack.wJuVwM/_new  2020-02-27 06:41:55.665662646 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-certbot-dns-dnsmadeeasy
-Version:1.1.0
+Version:1.2.0
 Release:0
 Summary:DNS Made Easy Authenticator plugin for Certbot
 License:Apache-2.0

++ certbot-dns-dnsmadeeasy-1.1.0.tar.gz -> 
certbot-dns-dnsmadeeasy-1.2.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-dns-dnsmadeeasy-1.1.0/PKG-INFO 
new/certbot-dns-dnsmadeeasy-1.2.0/PKG-INFO
--- old/certbot-dns-dnsmadeeasy-1.1.0/PKG-INFO  2020-01-14 19:42:01.0 
+0100
+++ new/certbot-dns-dnsmadeeasy-1.2.0/PKG-INFO  2020-02-04 22:47:18.0 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-dns-dnsmadeeasy
-Version: 1.1.0
+Version: 1.2.0
 Summary: DNS Made Easy DNS Authenticator plugin for Certbot
 Home-page: https://github.com/certbot/certbot
 Author: Certbot Project
@@ -17,7 +17,6 @@
 Classifier: Programming Language :: Python :: 2
 Classifier: Programming Language :: Python :: 2.7
 Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
@@ -28,5 +27,5 @@
 Classifier: Topic :: System :: Networking
 Classifier: Topic :: System :: Systems Administration
 Classifier: Topic :: Utilities
-Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
+Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
 Provides-Extra: docs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-dnsmadeeasy-1.1.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO 
new/certbot-dns-dnsmadeeasy-1.2.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO
--- old/certbot-dns-dnsmadeeasy-1.1.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO 
2020-01-14 19:42:01.0 +0100
+++ new/certbot-dns-dnsmadeeasy-1.2.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO 
2020-02-04 22:47:18.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-dns-dnsmadeeasy
-Version: 1.1.0
+Version: 1.2.0
 Summary: DNS Made Easy DNS Authenticator plugin for Certbot
 Home-page: https://github.com/certbot/certbot
 Author: Certbot Project
@@ -17,7 +17,6 @@
 Classifier: Programming Language :: Python :: 2
 Classifier: Programming Language :: Python :: 2.7
 Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
@@ -28,5 +27,5 @@
 Classifier: Topic :: System :: Networking
 Classifier: Topic :: System :: Systems Administration
 Classifier: Topic :: Utilities
-Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
+Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
 Provides-Extra: docs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-dnsmadeeasy-1.1.0/certbot_dns_dnsmadeeasy.egg-info/requires.txt 
new/certbot-dns-dnsmadeeasy-1.2.0/certbot_dns_dnsmadeeasy.egg-info/requires.txt
--- 
old/certbot-dns-dnsmadeeasy-1.1.0/certbot_dns_dnsmadeeasy.egg-info/requires.txt 
2020-01-14 19:42:01.0 +0100
+++ 
new/certbot-dns-dnsmadeeasy-1.2.0/certbot_dns_dnsmadeeasy.egg-info/requires.txt 
2020-02-

commit python-certbot-dns-dnsmadeeasy for openSUSE:Leap:15.2

2020-02-19 Thread root
Hello community,

here is the log from the commit of package python-certbot-dns-dnsmadeeasy for 
openSUSE:Leap:15.2 checked in at 2020-02-19 18:48:34

Comparing /work/SRC/openSUSE:Leap:15.2/python-certbot-dns-dnsmadeeasy (Old)
 and  
/work/SRC/openSUSE:Leap:15.2/.python-certbot-dns-dnsmadeeasy.new.26092 (New)


Package is "python-certbot-dns-dnsmadeeasy"

Wed Feb 19 18:48:34 2020 rev:5 rq:776485 version:1.1.0

Changes:

--- 
/work/SRC/openSUSE:Leap:15.2/python-certbot-dns-dnsmadeeasy/python-certbot-dns-dnsmadeeasy.changes
  2020-01-15 15:47:50.227405291 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.python-certbot-dns-dnsmadeeasy.new.26092/python-certbot-dns-dnsmadeeasy.changes
   2020-02-19 18:48:34.339022324 +0100
@@ -1,0 +2,6 @@
+Tue Jan 21 09:42:16 UTC 2020 - Marketa Calabkova 
+
+- update to version 1.1.0
+  * Sync with main certbot package.
+
+---

Old:

  certbot-dns-dnsmadeeasy-1.0.0.tar.gz

New:

  certbot-dns-dnsmadeeasy-1.1.0.tar.gz



Other differences:
--
++ python-certbot-dns-dnsmadeeasy.spec ++
--- /var/tmp/diff_new_pack.tpZGuE/_old  2020-02-19 18:48:34.643022648 +0100
+++ /var/tmp/diff_new_pack.tpZGuE/_new  2020-02-19 18:48:34.647022652 +0100
@@ -18,13 +18,13 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-certbot-dns-dnsmadeeasy
-Version:1.0.0
+Version:1.1.0
 Release:0
 Summary:DNS Made Easy Authenticator plugin for Certbot
 License:Apache-2.0
 URL:https://github.com/certbot/certbot
 Source: 
https://files.pythonhosted.org/packages/source/c/certbot-dns-dnsmadeeasy/certbot-dns-dnsmadeeasy-%{version}.tar.gz
-BuildRequires:  %{python_module certbot >= 1.0.0}
+BuildRequires:  %{python_module certbot >= 1.1.0}
 BuildRequires:  %{python_module dns-lexicon >= 2.2.1}
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module pytest}
@@ -32,7 +32,7 @@
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-acme >= 0.31.0
-Requires:   python-certbot >= 1.0.0
+Requires:   python-certbot >= 1.1.0
 Requires:   python-dns-lexicon >= 2.2.1
 Requires:   python-zope.interface
 BuildArch:  noarch

++ certbot-dns-dnsmadeeasy-1.0.0.tar.gz -> 
certbot-dns-dnsmadeeasy-1.1.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-dns-dnsmadeeasy-1.0.0/PKG-INFO 
new/certbot-dns-dnsmadeeasy-1.1.0/PKG-INFO
--- old/certbot-dns-dnsmadeeasy-1.0.0/PKG-INFO  2019-12-03 18:20:59.0 
+0100
+++ new/certbot-dns-dnsmadeeasy-1.1.0/PKG-INFO  2020-01-14 19:42:01.0 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-dns-dnsmadeeasy
-Version: 1.0.0
+Version: 1.1.0
 Summary: DNS Made Easy DNS Authenticator plugin for Certbot
 Home-page: https://github.com/certbot/certbot
 Author: Certbot Project
@@ -8,7 +8,7 @@
 License: Apache License 2.0
 Description: UNKNOWN
 Platform: UNKNOWN
-Classifier: Development Status :: 3 - Alpha
+Classifier: Development Status :: 5 - Production/Stable
 Classifier: Environment :: Plugins
 Classifier: Intended Audience :: System Administrators
 Classifier: License :: OSI Approved :: Apache Software License
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-dnsmadeeasy-1.0.0/certbot_dns_dnsmadeeasy/_internal/dns_dnsmadeeasy.py
 
new/certbot-dns-dnsmadeeasy-1.1.0/certbot_dns_dnsmadeeasy/_internal/dns_dnsmadeeasy.py
--- 
old/certbot-dns-dnsmadeeasy-1.0.0/certbot_dns_dnsmadeeasy/_internal/dns_dnsmadeeasy.py
  2019-12-03 18:20:30.0 +0100
+++ 
new/certbot-dns-dnsmadeeasy-1.1.0/certbot_dns_dnsmadeeasy/_internal/dns_dnsmadeeasy.py
  2020-01-14 19:41:31.0 +0100
@@ -1,8 +1,8 @@
 """DNS Authenticator for DNS Made Easy DNS."""
 import logging
 
-import zope.interface
 from lexicon.providers import dnsmadeeasy
+import zope.interface
 
 from certbot import errors
 from certbot import interfaces
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-dnsmadeeasy-1.0.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO 
new/certbot-dns-dnsmadeeasy-1.1.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO
--- old/certbot-dns-dnsmadeeasy-1.0.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO 
2019-12-03 18:20:59.0 +0100
+++ new/certbot-dns-dnsmadeeasy-1.1.0/certbot_dns_dnsmadeeasy.egg-info/PKG-INFO 
2020-01-14 19:42:01.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-dns-dnsmadeeasy
-Version: 1.0.0
+Version: 1.1.0
 Summary: DNS Made Easy DNS Authenticator plugin for Certbot
 Home-page: https://github.com/certbot/certbot