diff --git a/README.md b/README.md index 1b9ab649..3232f30b 100644 --- a/README.md +++ b/README.md @@ -286,7 +286,7 @@ To push the `dtreeviz` library to your local egg cache (force updates) during de python setup.py install -f ``` -E.g., on Terence's box, it add `/Users/parrt/anaconda3/lib/python3.6/site-packages/dtreeviz-2.1.3-py3.6.egg`. +E.g., on Terence's box, it add `/Users/parrt/anaconda3/lib/python3.6/site-packages/dtreeviz-2.1.4-py3.6.egg`. ## Feedback diff --git a/dtreeviz/version.py b/dtreeviz/version.py index 07104040..4682b085 100644 --- a/dtreeviz/version.py +++ b/dtreeviz/version.py @@ -21,4 +21,4 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -__version__ = '2.1.3' +__version__ = '2.1.4' diff --git a/releasing.txt b/releasing.txt new file mode 100644 index 00000000..5a392dca --- /dev/null +++ b/releasing.txt @@ -0,0 +1,12 @@ +# Releasing dtreeviz + +1. Update version.py, setup.py, README. +2. Merge dev into master +3. Create release notes +4. Push to pypi +5. Announce + +``` +python3 -m build +twine upload dist/dtreeviz-2.1.2.tar.gz dist/dtreeviz-2.1.2-py3-none-any.whl +``` diff --git a/setup.py b/setup.py index c24a3e78..ae482432 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='dtreeviz', - version='2.1.3', + version='2.1.4', url='https://github.com/parrt/dtreeviz', license='MIT', packages=find_packages(),