From adf47613f2df5a9b080d00f9b2632da556a61ea8 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 12 Mar 2019 16:01:16 +0100 Subject: [PATCH] Bump version to 3.2.0 and update the changelog --- CHANGES | 23 +++++++++++++++++++++++ Lib/ldap/pkginfo.py | 2 +- Lib/ldapurl.py | 2 +- Lib/ldif.py | 2 +- Lib/slapdtest/__init__.py | 2 +- 5 files changed, 27 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 2c04f80..6e37016 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,26 @@ +---------------------------------------------------------------- +Released 3.2.0 2019-03-13 + +Lib/ +* Add support for X-ORIGIN in ldap.schema's ObjectClass +* Make initialize() pass extra keyword arguments to LDAPObject +* ldap.controls.sss: use str instead of basestring on Python 3 +* Provide ldap._trace_* atributes in non-debug mode + +Doc/ +* Fix ReST syntax for links to set_option and get_option + +Tests/ +* Use intersphinx to link to Python documentation +* Correct type of some attribute values to bytes +* Use system-specific ENOTCONN value + +Infrastructure: +* Add testing and document support for Python 3.7 +* Add Python 3.8-dev to Tox and CI configuration +* Add Doc/requirements.txt for building on Read the Docs + + ---------------------------------------------------------------- Released 3.1.0 2018-05-25 diff --git a/Lib/ldap/pkginfo.py b/Lib/ldap/pkginfo.py index d004c5d..df29b60 100644 --- a/Lib/ldap/pkginfo.py +++ b/Lib/ldap/pkginfo.py @@ -2,6 +2,6 @@ """ meta attributes for packaging which does not import any dependencies """ -__version__ = '3.1.0' +__version__ = '3.2.0' __author__ = u'python-ldap project' __license__ = 'Python style' diff --git a/Lib/ldapurl.py b/Lib/ldapurl.py index 7a25eca..6de0645 100644 --- a/Lib/ldapurl.py +++ b/Lib/ldapurl.py @@ -4,7 +4,7 @@ See https://www.python-ldap.org/ for details. """ -__version__ = '3.1.0' +__version__ = '3.2.0' __all__ = [ # constants diff --git a/Lib/ldif.py b/Lib/ldif.py index 3f13ec6..a26c8ac 100644 --- a/Lib/ldif.py +++ b/Lib/ldif.py @@ -6,7 +6,7 @@ from __future__ import unicode_literals -__version__ = '3.1.0' +__version__ = '3.2.0' __all__ = [ # constants diff --git a/Lib/slapdtest/__init__.py b/Lib/slapdtest/__init__.py index 56ba2c9..6b8c986 100644 --- a/Lib/slapdtest/__init__.py +++ b/Lib/slapdtest/__init__.py @@ -5,7 +5,7 @@ See https://www.python-ldap.org/ for details. """ -__version__ = '3.1.0' +__version__ = '3.2.0' from slapdtest._slapdtest import SlapdObject, SlapdTestCase, SysLogHandler from slapdtest._slapdtest import requires_ldapi, requires_sasl, requires_tls