Adjust the version in descriptions

Because of a breaking change we are releasing[1], we should bump
major version for the next release.

[1] https://review.opendev.org/c/openstack/oslo.utils/+/903924

Change-Id: Ic5cabfac5734548eede21a9e7f304f8328a11a30
This commit is contained in:
Takashi Kajinami 2024-11-28 00:54:54 +09:00
parent 8faf2204f9
commit 1c9b9e9a44

View File

@ -61,7 +61,7 @@ def crypt_mksalt(method):
This is provided as a replacement of crypt.mksalt method because crypt
module was removed in Python 3.13.
.. versionadded:: 7.5
.. versionadded:: 8.0
"""
# NOTE(tkajinam): The mksalt method in crypto module used to support MD5
# and DES. However these are considered unsafe so we do not support these
@ -82,7 +82,7 @@ def crypt_password(key, salt):
This is provided as a replacement of crypt.crypt method because crypt
module was removed in Python 3.13.
.. versionadded:: 7.5
.. versionadded:: 8.0
"""
if _crypt is None:
raise RuntimeError('libcrypt is not available')