diff --git a/ChangeLog b/ChangeLog index df65b4b2..3b7044bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +[1.5.1] - 2020-12-30 + +* doc: Do not document Python 2.7-3.5 as documented ;p + [1.5.0] - 2020-12-30 * ci: Drop Python < 3.6. diff --git a/README.rst b/README.rst index a93a67af..2f8d241c 100644 --- a/README.rst +++ b/README.rst @@ -65,13 +65,13 @@ https://synss.github.io/python-mbedtls/ Installation ============ -The bindings are tested with Python 2.7, 3.5, 3.6, 3.7, and 3.8 on Linux +The bindings are tested with Python 3.6, 3.7, 3.8, 3.9 on Linux and macOS. -`manylinux1`_ wheels are available for 64-bit Linux systems. Install +`manylinux`_ wheels are available for 64-bit Linux systems. Install with ``pip install python-mbedtls``. -.. _manylinux1: https://www.python.org/dev/peps/pep-0513/ +.. _manylinux: https://www.python.org/dev/peps/pep-0513/ Usage and examples diff --git a/docs/source/conf.py b/docs/source/conf.py index 3175e113..4903d59e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = "Mathias Laurin" # The full version, including alpha/beta/rc tags -release = "1.5.0" +release = "1.5.1" # -- General configuration --------------------------------------------------- diff --git a/src/mbedtls/__init__.py b/src/mbedtls/__init__.py index 2f9e5995..f2ccbca5 100644 --- a/src/mbedtls/__init__.py +++ b/src/mbedtls/__init__.py @@ -16,7 +16,7 @@ import mbedtls.version as version import mbedtls.x509 as x509 -__version__ = "1.5.0" +__version__ = "1.5.1" __all__ = ( "cipher",