update version to 1.1.1.

This commit is contained in:
2023-07-26 17:59:35 +09:00
parent 4d87b55b40
commit 8588c6ce70
5 changed files with 7 additions and 13 deletions

1
mdrsclient/VERSION Normal file
View File

@ -0,0 +1 @@
1.1.1

View File

@ -1,8 +1,8 @@
import os
here = os.path.realpath(os.path.dirname(__file__))
__all__ = ["__version__"]
with open(os.path.join(os.path.dirname(here), "VERSION")) as version_file:
with open(os.path.join(here, "VERSION")) as version_file:
__version__ = version_file.read().strip()
__all__ = ["__version__"]