Skip to content

Commit

Permalink
Bump version: 0.7.1 → 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kynan committed Nov 3, 2024
1 parent b4fad6f commit f42caea
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.1*
twine upload -r testpypi dist/nbstripout-0.7.1*
twine upload dist/nbstripout-0.7.1*
twine check dist/nbstripout-0.8.0*
twine upload -r testpypi dist/nbstripout-0.8.0*
twine upload dist/nbstripout-0.8.0*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ to the `.pre-commit-config.yaml` in your repository:

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

__all__ = ["install", "uninstall", "status", "main"]
__version__ = '0.7.1'
__version__ = '0.8.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.7.1
current_version = 0.8.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.7.1',
version='0.8.0',

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

0 comments on commit f42caea

Please sign in to comment.