diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 82e7fc5..dd59f07 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -61,14 +61,17 @@ the test to run:: Making a Release ---------------- -Tag the release_ on GitHub, naming it in the ``v0.0.0`` format. +Tag the release_ on GitHub, naming it in the ``v0.0.0`` format. Increment the version in +``setup.py`` to match. .. _release: https://github.com/aclowes/yawn/releases/new Build the frontend code, then bundle and release a source tarball. Finally, test -installing it:: +installing it before uploading to the production PyPI server:: (cd frontend/ && yarn build) ./setup.py sdist upload -r https://test.pypi.org/legacy/ pip install -i https://testpypi.python.org/pypi yawns + ./setup.py sdist upload -r https://upload.pypi.org/legacy/ + diff --git a/setup.py b/setup.py index 6d7a6c1..32c4cab 100755 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='0.1.8', + version='0.1.9', description='Yet Another Workflow Engine, a subprocess-based DAG execution system', long_description=long_description,