Skip to content

Commit adf4761

Browse files
committed
Bump version to 3.2.0 and update the changelog
1 parent b66e56d commit adf4761

File tree

5 files changed

+27
-4
lines changed

5 files changed

+27
-4
lines changed

CHANGES

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
----------------------------------------------------------------
2+
Released 3.2.0 2019-03-13
3+
4+
Lib/
5+
* Add support for X-ORIGIN in ldap.schema's ObjectClass
6+
* Make initialize() pass extra keyword arguments to LDAPObject
7+
* ldap.controls.sss: use str instead of basestring on Python 3
8+
* Provide ldap._trace_* atributes in non-debug mode
9+
10+
Doc/
11+
* Fix ReST syntax for links to set_option and get_option
12+
13+
Tests/
14+
* Use intersphinx to link to Python documentation
15+
* Correct type of some attribute values to bytes
16+
* Use system-specific ENOTCONN value
17+
18+
Infrastructure:
19+
* Add testing and document support for Python 3.7
20+
* Add Python 3.8-dev to Tox and CI configuration
21+
* Add Doc/requirements.txt for building on Read the Docs
22+
23+
124
----------------------------------------------------------------
225
Released 3.1.0 2018-05-25
326

Lib/ldap/pkginfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"""
33
meta attributes for packaging which does not import any dependencies
44
"""
5-
__version__ = '3.1.0'
5+
__version__ = '3.2.0'
66
__author__ = u'python-ldap project'
77
__license__ = 'Python style'

Lib/ldapurl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
See https://www.python-ldap.org/ for details.
55
"""
66

7-
__version__ = '3.1.0'
7+
__version__ = '3.2.0'
88

99
__all__ = [
1010
# constants

Lib/ldif.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from __future__ import unicode_literals
88

9-
__version__ = '3.1.0'
9+
__version__ = '3.2.0'
1010

1111
__all__ = [
1212
# constants

Lib/slapdtest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
See https://www.python-ldap.org/ for details.
66
"""
77

8-
__version__ = '3.1.0'
8+
__version__ = '3.2.0'
99

1010
from slapdtest._slapdtest import SlapdObject, SlapdTestCase, SysLogHandler
1111
from slapdtest._slapdtest import requires_ldapi, requires_sasl, requires_tls

0 commit comments

Comments
 (0)