From 08a493556642f7dd19ad48b1f7c40fe4ac607236 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Tue, 28 Mar 2017 17:48:41 +0200 Subject: [PATCH] Update the README with makefile changes --- .gitignore | 1 + README.rst | 22 +++++++--------------- 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index 8fba382c..35e8b939 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ budget/memory budget/settings.py *.pyc *.egg-info +dist .venv diff --git a/README.rst b/README.rst index 02e8be50..5b7bb4d0 100644 --- a/README.rst +++ b/README.rst @@ -96,29 +96,21 @@ Thanks again! How to release? =============== -In order to prepare a new release, we are following the following steps. +In order to prepare a new release, we are following the following steps: -The `fullrelease` command comes from `zest.releaser -`_. - -Install `zest.releaser`: - -.. code-block:: bash - - $ pip install "zest.releaser" - -- Merge remaining pull requests -- Update :file:`CONTRIBUTORS`. +- Merge remaining pull requests; +- Update :file:`CHANGELOG.rst` with the last changes; +- Update :file:`CONTRIBUTORS`; - Update known good versions of dependencies in ``requirements.txt`` with this command (from inside the venv): .. code-block:: bash $ pip freeze | grep -v -- '-e' > requirements.txt -Once this is done, use the "fullrelease" command: +Once this is done, use the "release" instruction: .. code-block:: bash - $ fullrelease + $ make release -That's all folks! +And the new version should be published on PyPI.