From 62bda836782d07d8e022fe12f654b2fe0075a0a8 Mon Sep 17 00:00:00 2001 From: Dmitrii Orlov Date: Sun, 15 Sep 2024 21:42:19 +0200 Subject: [PATCH] chore(ver): bump 2.1.1-->2.2.0 --- README.md | 4 ++-- pypiserver/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 08f5cf4..0150c8a 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ | name | description | | :---------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Version | 2.1.1 | -| Date: | 2024-04-25 | +| Version | 2.2.0 | +| Date: | 2024-09-15 | | Source | | | PyPI | | | Tests | | diff --git a/pypiserver/__init__.py b/pypiserver/__init__.py index 41674af..0aa8546 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__ = "2.1.1" +version = __version__ = "2.2.0" __version_info__ = tuple(_re.split("[.-]", __version__)) -__updated__ = "2024-04-25 01:23:25" +__updated__ = "2024-09-15 21:42:19" __title__ = "pypiserver" __summary__ = "A minimal PyPI server for use with pip/easy_install."