diff --git a/README.rst b/README.rst index 328a208..39036f2 100644 --- a/README.rst +++ b/README.rst @@ -9,7 +9,7 @@ pypiserver - minimal PyPI server for use with pip/easy_install ============================================================================== |pypi-ver| |test-status| |dependencies| |python-ver| |proj-license| -:Version: 1.5.1 +:Version: 1.5.2 :Date: 2023-07-30 :Source: https://github.com/pypiserver/pypiserver :PyPI: https://pypi.org/project/pypiserver/ diff --git a/pypiserver/__init__.py b/pypiserver/__init__.py index 40b7249..17230e4 100644 --- a/pypiserver/__init__.py +++ b/pypiserver/__init__.py @@ -7,9 +7,9 @@ import typing as t from pypiserver.bottle import Bottle from pypiserver.config import Config, RunConfig, strtobool -version = __version__ = "1.5.1" +version = __version__ = "1.5.2" __version_info__ = tuple(_re.split("[.-]", __version__)) -__updated__ = "2022-10-18 16:06:16" +__updated__ = "2023-07-30 23:18:50" __title__ = "pypiserver" __summary__ = "A minimal PyPI server for use with pip/easy_install."