From f88690305efa1e1df156790ad4dee99639b4f654 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Fri, 17 Jan 2020 17:00:35 -0500 Subject: [PATCH] Update version to 0.4.1 for new package Move cleaning the repository step to before the wheel is generated. To re-package without old versions of jupyter-matplotlib-X.X.X.tgz. To address: https://github.com/matplotlib/jupyter-matplotlib/issues/163 --- RELEASE.md | 6 +++--- ipympl/_version.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 70ee4b07..6b674f5c 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,8 @@ - To release a new version of ipympl on PyPI: +# nuke the `dist` and `node_modules` +git clean -fdx + Update _version.py (set release version, remove 'dev') git add and git commit python setup.py sdist upload @@ -11,8 +14,5 @@ git push git push --tags - To release a new version of jupyter-matplotlib on NPM: - -# nuke the `dist` and `node_modules` -git clean -fdx npm install npm publish diff --git a/ipympl/_version.py b/ipympl/_version.py index 3d7a0fec..819e52c9 100644 --- a/ipympl/_version.py +++ b/ipympl/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 4, 0) +version_info = (0, 4, 1) __version__ = '.'.join(map(str, version_info))