From ad46c1104ea40117f8fb0fd08653517743f94723 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Wed, 10 Jan 2018 12:35:58 +0100 Subject: [PATCH] Bump version to 3.0.0b4 and update CHANGES https://github.com/python-ldap/python-ldap/pull/158 --- CHANGES | 18 ++++++++++++++++++ Lib/ldap/pkginfo.py | 2 +- Lib/ldapurl.py | 2 +- Lib/ldif.py | 2 +- Lib/slapdtest/__init__.py | 2 +- 5 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 9384819..03d892f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,21 @@ +---------------------------------------------------------------- +Released 3.0.0b4 2018-01-10 + +Changes since 3.0.0b3: + +Removed support for Python 3.3, which reached its end-of-life 2017-09-29. + +Lib/ +* Make default argument values work under bytes_mode +* Update use of map() to use list/set comprehensions instead + +Test/ +* Refactor syncrepl tests to run with bytes_mode + +Doc/ +* Document all_records attribute of LDIFRecordList + + ---------------------------------------------------------------- Released 3.0.0b3 2017-12-20 diff --git a/Lib/ldap/pkginfo.py b/Lib/ldap/pkginfo.py index dec5a9c..24e2017 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.0.0b3' +__version__ = '3.0.0b4' __author__ = u'python-ldap project' __license__ = 'Python style' diff --git a/Lib/ldapurl.py b/Lib/ldapurl.py index 698889a..ca28de3 100644 --- a/Lib/ldapurl.py +++ b/Lib/ldapurl.py @@ -4,7 +4,7 @@ See https://www.python-ldap.org/ for details. """ -__version__ = '3.0.0b3' +__version__ = '3.0.0b4' __all__ = [ # constants diff --git a/Lib/ldif.py b/Lib/ldif.py index 96b1651..29c118c 100644 --- a/Lib/ldif.py +++ b/Lib/ldif.py @@ -6,7 +6,7 @@ from __future__ import unicode_literals -__version__ = '3.0.0b3' +__version__ = '3.0.0b4' __all__ = [ # constants diff --git a/Lib/slapdtest/__init__.py b/Lib/slapdtest/__init__.py index d268874..727aa52 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.0.0b3' +__version__ = '3.0.0b4' from slapdtest._slapdtest import SlapdObject, SlapdTestCase, SysLogHandler from slapdtest._slapdtest import requires_ldapi, requires_sasl, requires_tls