Skip to content

Commit

Permalink
Bump version to 3.0.0b4 and update CHANGES
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Viktorin authored and GitHub committed Jan 10, 2018
1 parent abcd2e9 commit ad46c11
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
18 changes: 18 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion Lib/ldap/pkginfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion Lib/ldapurl.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
See https://www.python-ldap.org/ for details.
"""

__version__ = '3.0.0b3'
__version__ = '3.0.0b4'

__all__ = [
# constants
Expand Down
2 changes: 1 addition & 1 deletion Lib/ldif.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from __future__ import unicode_literals

__version__ = '3.0.0b3'
__version__ = '3.0.0b4'

__all__ = [
# constants
Expand Down
2 changes: 1 addition & 1 deletion Lib/slapdtest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ad46c11

Please sign in to comment.