diff --git a/doc/internal/release_process.rst b/doc/internal/release_process.rst index d71550a56..4a56572d2 100644 --- a/doc/internal/release_process.rst +++ b/doc/internal/release_process.rst @@ -31,9 +31,9 @@ This process is only meant for the project administrators, not users and develop 8. Then run some tests from a RSMTool working copy. If the TestPyPI package works, then move on to the next step. If it doesn't, figure out why and rebuild and re-upload the package. -9. Build the new generic conda package by running the following command in the ``conda-recipe`` directory (note that this assumes that you have cloned RSMTool in a directory named ``rsmtool`` and that the latest version of ``numpy`` is ``1.18``):: +9. Build the new generic conda package by running the following command in the ``conda-recipe`` directory (note that this assumes that you have cloned RSMTool in a directory named ``rsmtool`` and that the latest version of ``numpy`` is ``1.19``):: - conda build -c conda-forge -c ets --numpy=1.18 . + conda build -c conda-forge -c ets --numpy=1.19 . 10. Upload the package to anaconda.org using ``anaconda upload --user ets ``. You will need to have the appropriate permissions for the ``ets`` organization. diff --git a/rsmtool/version.py b/rsmtool/version.py index 2b6811cf5..d9cd859b0 100644 --- a/rsmtool/version.py +++ b/rsmtool/version.py @@ -3,5 +3,5 @@ in one place. Based on the suggestion `here. `_ """ -__version__ = '8.0.0' +__version__ = '8.0.1' VERSION = tuple(int(x) for x in __version__.split('.'))