Skip to content

Commit

Permalink
Bump version: 0.7.0 → 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kynan committed Feb 4, 2024
1 parent 863ceff commit 3c241ca
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ Use [twine](https://twine.readthedocs.io/en/latest/#using-twine) to upload the
new release to PyPI:

python -m build
twine check dist/nbstripout-0.7.0*
twine upload -r testpypi dist/nbstripout-0.7.0*
twine upload dist/nbstripout-0.7.0*
twine check dist/nbstripout-0.7.1*
twine upload -r testpypi dist/nbstripout-0.7.1*
twine upload dist/nbstripout-0.7.1*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ to the `.pre-commit-config.yaml` in your repository:

repos:
- repo: https://github.com/kynan/nbstripout
rev: 0.7.0
rev: 0.7.1
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 @@ -125,7 +125,7 @@
from nbstripout._utils import strip_output, strip_zeppelin_output

__all__ = ["install", "uninstall", "status", "main"]
__version__ = '0.7.0'
__version__ = '0.7.1'


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.7.0
current_version = 0.7.1
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 @@ -8,7 +8,7 @@
]

setup(name='nbstripout',
version='0.7.0',
version='0.7.1',

author='Florian Rathgeber',
author_email='florian.rathgeber@gmail.com',
Expand Down

0 comments on commit 3c241ca

Please sign in to comment.