Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion ipympl/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 4, 0)
version_info = (0, 4, 1)
__version__ = '.'.join(map(str, version_info))