File tree Expand file tree Collapse file tree 5 files changed +27
-4
lines changed Expand file tree Collapse file tree 5 files changed +27
-4
lines changed Original file line number Diff line number Diff line change
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
+
1
24
----------------------------------------------------------------
2
25
Released 3.1.0 2018-05-25
3
26
Original file line number Diff line number Diff line change 2
2
"""
3
3
meta attributes for packaging which does not import any dependencies
4
4
"""
5
- __version__ = '3.1 .0'
5
+ __version__ = '3.2 .0'
6
6
__author__ = u'python-ldap project'
7
7
__license__ = 'Python style'
Original file line number Diff line number Diff line change 4
4
See https://www.python-ldap.org/ for details.
5
5
"""
6
6
7
- __version__ = '3.1 .0'
7
+ __version__ = '3.2 .0'
8
8
9
9
__all__ = [
10
10
# constants
Original file line number Diff line number Diff line change 6
6
7
7
from __future__ import unicode_literals
8
8
9
- __version__ = '3.1 .0'
9
+ __version__ = '3.2 .0'
10
10
11
11
__all__ = [
12
12
# constants
Original file line number Diff line number Diff line change 5
5
See https://www.python-ldap.org/ for details.
6
6
"""
7
7
8
- __version__ = '3.1 .0'
8
+ __version__ = '3.2 .0'
9
9
10
10
from slapdtest ._slapdtest import SlapdObject , SlapdTestCase , SysLogHandler
11
11
from slapdtest ._slapdtest import requires_ldapi , requires_sasl , requires_tls
You can’t perform that action at this time.
0 commit comments