chore(ver): bump 2.0.1-->2.1.0

This commit is contained in:
Dmitrii Orlov 2024-04-24 18:30:24 +02:00
parent 6bfeddc1fc
commit d5886ae3d5
No known key found for this signature in database
GPG Key ID: A5C683DE49E900B5
2 changed files with 4 additions and 4 deletions

View File

@ -9,8 +9,8 @@
| name | description |
| :---------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Version | 2.0.1 |
| Date: | 2023-10-01 |
| Version | 2.1.0 |
| Date: | 2024-04-24 |
| Source | <https://github.com/pypiserver/pypiserver> |
| PyPI | <https://pypi.org/project/pypiserver/> |
| Tests | <https://github.com/pypiserver/pypiserver/actions> |

View File

@ -7,9 +7,9 @@ import typing as t
from pypiserver.bottle import Bottle
from pypiserver.config import Config, RunConfig, strtobool
version = __version__ = "2.0.1"
version = __version__ = "2.1.0"
__version_info__ = tuple(_re.split("[.-]", __version__))
__updated__ = "2023-10-01 16:14:10"
__updated__ = "2024-04-24 18:30:23"
__title__ = "pypiserver"
__summary__ = "A minimal PyPI server for use with pip/easy_install."