Skip to content

Commit

Permalink
Bump version: 0.4.0 → 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kynan committed Jun 28, 2021
1 parent b57c630 commit 72d56e1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Based on https://gist.github.com/minrk/6176788.
Python 3 only
=============

As of version 0.4.0, nbstripout supports Python 3 *only*. If you need to use
As of version 0.5.0, nbstripout supports Python 3 *only*. If you need to use
Python 2.7, install nbstripout 0.3.10 ::

pip install nbstripout==0.3.10
Expand Down Expand Up @@ -391,7 +391,7 @@ Once you have `pre-commit`_ installed, add the follwong to the

repos:
- repo: https://github.com/kynan/nbstripout
rev: 0.4.0
rev: 0.5.0
hooks:
- id: nbstripout

Expand Down
2 changes: 1 addition & 1 deletion nbstripout/_nbstripout.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def write(nb, f):
return current.write(nb, f, 'json')

__all__ = ["install", "uninstall", "status", "main"]
__version__ = '0.4.0'
__version__ = '0.5.0'


INSTALL_LOCATION_LOCAL = 'local'
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.0
current_version = 0.5.0
commit = True
tag = True
tag_name = {new_version}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
]

setup(name='nbstripout',
version='0.4.0',
version='0.5.0',

author='Florian Rathgeber',
author_email='[email protected]',
Expand Down

0 comments on commit 72d56e1

Please sign in to comment.