From b4666c14a612f66dea057191395a4e5c2ab56e85 Mon Sep 17 00:00:00 2001 From: Dmitrii Orlov Date: Sun, 1 Oct 2023 14:23:38 +0200 Subject: [PATCH] chore(ver): bump 1.5.2-->2.0.0 --- README.md | 4 ++-- pypiserver/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3b38882..7f2b0aa 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ | name | description | | :---------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Version | 1.5.2 | -| Date: | 2023-07-30 | +| Version | 2.0.0 | +| Date: | 2023-10-01 | | Source | https://github.com/pypiserver/pypiserver | | PyPI | https://pypi.org/project/pypiserver/ | | Tests | https://github.com/pypiserver/pypiserver/actions | diff --git a/pypiserver/__init__.py b/pypiserver/__init__.py index 17230e4..d3e967f 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.2" +version = __version__ = "2.0.0" __version_info__ = tuple(_re.split("[.-]", __version__)) -__updated__ = "2023-07-30 23:18:50" +__updated__ = "2023-10-01 14:23:37" __title__ = "pypiserver" __summary__ = "A minimal PyPI server for use with pip/easy_install."