Skip to content

Commit ad46c11

Browse files
authored
Bump version to 3.0.0b4 and update CHANGES
python-ldap#158
1 parent abcd2e9 commit ad46c11

File tree

5 files changed

+22
-4
lines changed

5 files changed

+22
-4
lines changed

CHANGES

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
----------------------------------------------------------------
2+
Released 3.0.0b4 2018-01-10
3+
4+
Changes since 3.0.0b3:
5+
6+
Removed support for Python 3.3, which reached its end-of-life 2017-09-29.
7+
8+
Lib/
9+
* Make default argument values work under bytes_mode
10+
* Update use of map() to use list/set comprehensions instead
11+
12+
Test/
13+
* Refactor syncrepl tests to run with bytes_mode
14+
15+
Doc/
16+
* Document all_records attribute of LDIFRecordList
17+
18+
119
----------------------------------------------------------------
220
Released 3.0.0b3 2017-12-20
321

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.0b3'
5+
__version__ = '3.0.0b4'
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.0b3'
7+
__version__ = '3.0.0b4'
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.0b3'
9+
__version__ = '3.0.0b4'
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.0b3'
8+
__version__ = '3.0.0b4'
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)