Normalize the version (#1101)

To fix that warning:

    setuptools/dist.py:473: UserWarning: Normalizing '2.5.0-dev' to '2.5.0.dev0'
This commit is contained in:
Mickaël Schoentgen 2021-07-01 10:34:51 +02:00 committed by GitHub
parent 9c38da96b0
commit 5717fb1ad5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,6 @@ HTTPie: command-line HTTP client for the API era.
""" """
__version__ = '2.5.0-dev' __version__ = '2.5.0.dev0'
__author__ = 'Jakub Roztocil' __author__ = 'Jakub Roztocil'
__licence__ = 'BSD' __licence__ = 'BSD'