From d99fb16e71039807e4dee945f574e40a831c56ee Mon Sep 17 00:00:00 2001 From: Nitin Madnani Date: Mon, 19 Jul 2021 21:02:09 -0400 Subject: [PATCH] Update version number. --- doc/internal/release_process.rst | 2 +- rsmtool/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/internal/release_process.rst b/doc/internal/release_process.rst index a041eb3cb..7ee1f2a36 100644 --- a/doc/internal/release_process.rst +++ b/doc/internal/release_process.rst @@ -42,7 +42,7 @@ This process is only meant for the project administrators, not users and develop #. 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. -#. 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``):: +#. Build the new 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``):: conda build -c conda-forge -c ets . diff --git a/rsmtool/version.py b/rsmtool/version.py index 442967272..d5e56100e 100644 --- a/rsmtool/version.py +++ b/rsmtool/version.py @@ -3,5 +3,5 @@ in one place. Based on the suggestion `here. `_ """ -__version__ = '8.1.1' +__version__ = '8.1.2' VERSION = tuple(int(x) for x in __version__.split('.'))