Skip to content

Commit

Permalink
Update version to 0.4.1 for new package
Browse files Browse the repository at this point in the history
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: #163
  • Loading branch information
thewtex committed Jan 17, 2020
1 parent ae23890 commit f886903
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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))

0 comments on commit f886903

Please sign in to comment.