Skip to content

Commit b80e813

Browse files
committed
Prepare a new release
1 parent 59af061 commit b80e813

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Released 3.4.1 2022-07-05
1+
Released 3.4.2 2022-07-06
22

33
This is a minor release to provide out-of-the-box compatibility with the merge
44
of libldap and libldap_r that happened with OpenLDAP's 2.5 release.

Doc/contributing.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,8 @@ If you are tasked with releasing python-ldap, remember to:
218218
* Go through all changes since last version, and add them to ``CHANGES``.
219219
* Run :ref:`additional tests` as appropriate, fix any regressions.
220220
* Change the release date in ``CHANGES``.
221+
* Update ``__version__`` tags where appropriate (each module ``ldap``,
222+
``ldif``, ``ldapurl``, ``slapdtest`` has its own copy).
221223
* Merge all that (using pull requests).
222224
* Run ``python setup.py sdist``, and smoke-test the resulting package
223225
(install in a clean virtual environment, import ``ldap``).

Lib/ldap/pkginfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
meta attributes for packaging which does not import any dependencies
33
"""
4-
__version__ = '3.4.0'
4+
__version__ = '3.4.2'
55
__author__ = 'python-ldap project'
66
__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.4.0'
7+
__version__ = '3.4.2'
88

99
__all__ = [
1010
# constants

Lib/ldif.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
See https://www.python-ldap.org/ for details.
55
"""
6-
__version__ = '3.4.0'
6+
__version__ = '3.4.2'
77

88
__all__ = [
99
# constants

Lib/slapdtest/__init__.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.4.0'
7+
__version__ = '3.4.2'
88

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

0 commit comments

Comments
 (0)