Skip to content

Commit

Permalink
Bump version: 0.5.0 → 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kynan committed Jul 24, 2022
1 parent 978a7c5 commit 93d7aae
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.5.0, nbstripout supports Python 3 *only*. If you need to use
As of version 0.6.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 @@ -410,7 +410,7 @@ Once you have `pre-commit`_ installed, add the follwong to the

repos:
- repo: https://github.com/kynan/nbstripout
rev: 0.5.0
rev: 0.6.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 @@ -145,7 +145,7 @@ def write(nb, f):
return current.write(nb, f, 'json')

__all__ = ["install", "uninstall", "status", "main"]
__version__ = '0.5.0'
__version__ = '0.6.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.5.0
current_version = 0.6.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 @@ -20,7 +20,7 @@
]

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

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

0 comments on commit 93d7aae

Please sign in to comment.