summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2022-04-25 14:01:27 -0700
committerJarrod Millman <jarrod.millman@gmail.com>2022-04-25 14:01:27 -0700
commita701bbe8bc569d783d4148ec9681dc65b47c5149 (patch)
treeafeed8b4cbb533a8a43c643db4db74938479e0ad
parent4ee77007223d2211e673321477fb49e34914e203 (diff)
downloadnumpydoc-a701bbe8bc569d783d4148ec9681dc65b47c5149.tar.gz
Update release process
-rw-r--r--RELEASE.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/RELEASE.rst b/RELEASE.rst
index 8e9283f..09dea52 100644
--- a/RELEASE.rst
+++ b/RELEASE.rst
@@ -19,11 +19,11 @@ Process
- Review and update ``doc/release_notes.rst``.
-- Update ``__version__`` in ``numpydoc/__init__.py``.
+- Update ``__version__`` in ``numpydoc/_version.py``.
- Commit changes::
- git add numpydoc/__init__.py doc/release_notes.rst
+ git add numpydoc/_version.py doc/release_notes.rst
git commit -m 'Designate <version> release'
- Add the version number (e.g., `v1.2.0`) as a tag in git::
@@ -50,10 +50,10 @@ Process
python -m build --sdist --wheel
twine upload -s dist/*
-- Update ``__version__`` in ``numpydoc/__init__.py``.
+- Update ``__version__`` in ``numpydoc/_version.py``.
- Commit changes::
- git add numpydoc/__init__.py
+ git add numpydoc/_version.py
git commit -m 'Bump version'
git push origin main