Skip to content
Snippets Groups Projects
Commit f6291040 authored by John Chilton's avatar John Chilton
Browse files

Update developing.rst for improved release process.

parent 03760528
No related branches found
No related tags found
No related merge requests found
...@@ -32,17 +32,13 @@ are fine. ...@@ -32,17 +32,13 @@ are fine.
* Review ``git status`` for missing files. * Review ``git status`` for missing files.
* Verify the latest Travis CI builds pass. * Verify the latest Travis CI builds pass.
* ``make open-docs`` and review changelog.
* ``make clean && make lint && make tests`` * ``make clean && make lint && make tests``
* Update version info in ``pulsar/__init__.py`` (drop ``.dev0`` suffix). * ``python tools/commit_version.py <new_version>``
* Update release date and description in ``HISTORY.rst``.
* ``make docs`` and review changelog.
* ``git add HISTORY.rst pulsar/__init__.py; git commit -m "Version <version>"``
* ``make release`` * ``make release``
* Review `Test PyPI site <https://testpypi.python.org/pypi/pulsar-app>`_ * Review `Test PyPI site <https://testpypi.python.org/pypi/pulsar-app>`_
for errors. for errors.
* Test intall ``pip install -i https://testpypi.python.org/pypi pulsar-app``. * Test intall ``pip install -i https://testpypi.python.org/pypi pulsar-app``.
* ``git tag <release>`` * ``python scripts/new_version.py <new_version>``
* Update version info in ``pulsar/__init__.py`` (n+1.dev0) and create new entry in HISTORY.rst. * ``git push origin master``
* ``git add HISTORY.rst pulsar/__init__.py; git commit -m "Start work on new version"``
* ``git push origin``
* ``git push --tags origin`` * ``git push --tags origin``
...@@ -7,7 +7,9 @@ import subprocess ...@@ -7,7 +7,9 @@ import subprocess
import sys import sys
PROJECT_NAME = "pulsar"
PROJECT_DIRECTORY = os.path.join(os.path.dirname(__file__), "..") PROJECT_DIRECTORY = os.path.join(os.path.dirname(__file__), "..")
MOD_DIRECTORY = os.path.join(PROJECT_DIRECTORY, PROJECT_NAME)
def main(argv): def main(argv):
...@@ -19,14 +21,14 @@ def main(argv): ...@@ -19,14 +21,14 @@ def main(argv):
history = history.replace(".dev0", " (%s)" % today_str) history = history.replace(".dev0", " (%s)" % today_str)
open(history_path, "w").write(history) open(history_path, "w").write(history)
planemo_mod_path = os.path.join(PROJECT_DIRECTORY, "planemo", "__init__.py") mod_path = os.path.join(MOD_DIRECTORY, "__init__.py")
mod = open(planemo_mod_path, "r").read() mod = open(mod_path, "r").read()
mod = re.sub("__version__ = '[\d\.]*\.dev0'", mod = re.sub("__version__ = '[\d\.]*\.dev0'",
"__version__ = '%s'" % version, "__version__ = '%s'" % version,
mod) mod)
mod = open(planemo_mod_path, "w").write(mod) mod = open(mod_path, "w").write(mod)
shell(["git", "commit", "-m", "Version %s" % version, shell(["git", "commit", "-m", "Version %s" % version,
"HISTORY.rst", "planemo/__init__.py"]) "HISTORY.rst", "%s/__init__.py" % PROJECT_NAME])
shell(["git", "tag", version]) shell(["git", "tag", version])
......
...@@ -6,7 +6,9 @@ import subprocess ...@@ -6,7 +6,9 @@ import subprocess
import sys import sys
PROJECT_NAME = "pulsar"
PROJECT_DIRECTORY = os.path.join(os.path.dirname(__file__), "..") PROJECT_DIRECTORY = os.path.join(os.path.dirname(__file__), "..")
MOD_DIRECTORY = os.path.join(PROJECT_DIRECTORY, PROJECT_NAME)
def main(argv): def main(argv):
...@@ -27,14 +29,14 @@ def main(argv): ...@@ -27,14 +29,14 @@ def main(argv):
""" % version) """ % version)
open(history_path, "w").write(history) open(history_path, "w").write(history)
planemo_mod_path = os.path.join(PROJECT_DIRECTORY, "planemo", "__init__.py") mod_path = os.path.join(MOD_DIRECTORY, "__init__.py")
mod = open(planemo_mod_path, "r").read() mod = open(mod_path, "r").read()
mod = re.sub("__version__ = '[\d\.]+'", mod = re.sub("__version__ = '[\d\.]+'",
"__version__ = '%s.dev0'" % version, "__version__ = '%s.dev0'" % version,
mod, 1) mod, 1)
mod = open(planemo_mod_path, "w").write(mod) mod = open(mod_path, "w").write(mod)
shell(["git", "commit", "-m", "Starting work on %s" % version, shell(["git", "commit", "-m", "Starting work on %s" % version,
"HISTORY.rst", "planemo/__init__.py"]) "HISTORY.rst", "%s/__init__.py" % project_name])
def shell(cmds, **kwds): def shell(cmds, **kwds):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment