diff --git a/pyproject.toml b/pyproject.toml index 78be3f9..db4d4b5 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "safrs" -version = "3.1.3" +version = "3.1.4" description="SAFRS : SqlAlchemy Flask-Restful Swagger" diff --git a/safrs/__about__.py b/safrs/__about__.py index dc0599e..b093614 100755 --- a/safrs/__about__.py +++ b/safrs/__about__.py @@ -1,2 +1,2 @@ -__version__ = "3.1.3" +__version__ = "3.1.4" __description__ = "Self-documenting(OAS) JSON:API framework for flask" diff --git a/setup.py b/setup.py index ecdadcf..d7e86f9 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ """ -python3 setup.py sdist +python setup.py sdist twine upload dist/* """ @@ -10,7 +10,7 @@ def safrs_setup(): with open("requirements.txt", "rt") as fp: install_requires = fp.read().strip().split("\n") - version = "3.1.3" + version = "3.1.4" setup( name="safrs",