Skip to content

Commit

Permalink
Bump version: 0.6.2 → 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kynan committed Feb 4, 2024
1 parent dfcbbb9 commit 1b4b956
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.6.2*
twine upload -r testpypi dist/nbstripout-0.6.2*
twine upload dist/nbstripout-0.6.2*
twine check dist/nbstripout-0.7.0*
twine upload -r testpypi dist/nbstripout-0.7.0*
twine upload dist/nbstripout-0.7.0*
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.6.2
rev: 0.7.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 @@ -125,7 +125,7 @@
from nbstripout._utils import strip_output, strip_zeppelin_output

__all__ = ["install", "uninstall", "status", "main"]
__version__ = '0.6.2'
__version__ = '0.7.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.6.2
current_version = 0.7.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 @@ -8,7 +8,7 @@
]

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

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

0 comments on commit 1b4b956

Please sign in to comment.