From 3c241ca99c9ad788e1b1d0a7bc858d9af83a9976 Mon Sep 17 00:00:00 2001 From: Florian Rathgeber Date: Sun, 4 Feb 2024 20:21:57 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.7.0=20=E2=86=92=200.7.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CONTRIBUTING.md | 6 +++--- README.md | 2 +- nbstripout/_nbstripout.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b96567d..20c7da1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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* diff --git a/README.md b/README.md index 476f0c3..278357b 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/nbstripout/_nbstripout.py b/nbstripout/_nbstripout.py index d9d1b9a..77e7944 100644 --- a/nbstripout/_nbstripout.py +++ b/nbstripout/_nbstripout.py @@ -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' diff --git a/setup.cfg b/setup.cfg index f726cc3..7cdf655 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.0 +current_version = 0.7.1 commit = True tag = True tag_name = {new_version} diff --git a/setup.py b/setup.py index f8e2d85..ef6529f 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ ] setup(name='nbstripout', - version='0.7.0', + version='0.7.1', author='Florian Rathgeber', author_email='florian.rathgeber@gmail.com',