Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6e0dca6

Browse files
committed
Add changelog and bump version to 3.0.0
1 parent deb411c commit 6e0dca6

File tree

5 files changed

+37
-4
lines changed

5 files changed

+37
-4
lines changed

CHANGES

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
----------------------------------------------------------------
2+
Released 3.0.0 2018-03-12
3+
4+
Notable changes since 2.4.45 (please see detailed logs below):
5+
* Python 3 support and bytes_mode
6+
see: https://python-ldap.readthedocs.io/en/latest/bytes_mode.html
7+
* The module `ldap.async` is renamed to `ldap.asyncsearch`
8+
* New dependencies: pyasn1, pyasn1_modules
9+
* Dropped support for Python 2.6 and 3.3
10+
11+
12+
Changes since 3.0.0b4:
13+
14+
Lib/
15+
* Add bytes_strictness to allow configuring behavior on bytes/text mismatch
16+
17+
Modules/
18+
* Add argument name to bytes mode TypeError
19+
* Use correct integer types for BER encode/decode (fix for big endian machines)
20+
21+
Test/
22+
* Set $LDAPNOINIT in all tests
23+
* Add test for secure TLS default
24+
* Ignore SASL methods in DSE test (fix for restricted environments)
25+
* Remove filterstr workaround from syncrepl test
26+
* Explicitly set TLS_REQUIRE_CERT option to TLS_HARD in test_tls_ext_noca
27+
28+
Doc/
29+
* Link to bytes mode from text-string arguments in the ldap module
30+
31+
Infrastructure:
32+
* Include lber in list of libraries in setup.cfg
33+
134
----------------------------------------------------------------
235
Released 3.0.0b4 2018-01-10
336

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.0.0b4'
5+
__version__ = '3.0.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.0.0b4'
7+
__version__ = '3.0.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.0.0b4'
9+
__version__ = '3.0.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.0.0b4'
8+
__version__ = '3.0.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)