Skip to content

Commit 4439d61

Browse files
committed
Bump version: 0.8.0 → 0.8.1
1 parent 4532480 commit 4439d61

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ Use [twine](https://twine.readthedocs.io/en/latest/#using-twine) to upload the
2424
new release to PyPI:
2525

2626
python -m build
27-
twine check dist/nbstripout-0.8.0*
28-
twine upload -r testpypi dist/nbstripout-0.8.0*
29-
twine upload dist/nbstripout-0.8.0*
27+
twine check dist/nbstripout-0.8.1*
28+
twine upload -r testpypi dist/nbstripout-0.8.1*
29+
twine upload dist/nbstripout-0.8.1*

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ to the `.pre-commit-config.yaml` in your repository:
447447

448448
repos:
449449
- repo: https://github.com/kynan/nbstripout
450-
rev: 0.8.0
450+
rev: 0.8.1
451451
hooks:
452452
- id: nbstripout
453453

nbstripout/_nbstripout.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
from nbstripout._utils import strip_output, strip_zeppelin_output
127127

128128
__all__ = ["install", "uninstall", "status", "main"]
129-
__version__ = '0.8.0'
129+
__version__ = '0.8.1'
130130

131131

132132
INSTALL_LOCATION_LOCAL = 'local'

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.8.0
2+
current_version = 0.8.1
33
commit = True
44
tag = True
55
tag_name = {new_version}

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
]
99

1010
setup(name='nbstripout',
11-
version='0.8.0',
11+
version='0.8.1',
1212

1313
author='Florian Rathgeber',
1414
author_email='[email protected]',

0 commit comments

Comments
 (0)