diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c04513a..9131188 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.5 +current_version = 0.0.6 parse = (?P\d+)\.(?P\d+)\.(?P\d+) serialize = {major}.{minor}.{patch} diff --git a/CHANGELOG.md b/CHANGELOG.md index e645aaa..c10240b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] - +## [0.0.6] - 2022-10-05 ### Changed - `execute_notebook` need not be passed in a `logger` instance explicitly, it will use the module-level logger if one is not provided. - Skip executing empty code cells in `execute_notebook` to not get stuck waiting for the cell status update to come through diff --git a/papermill_origami/_version.py b/papermill_origami/_version.py index 2b13487..37d324c 100644 --- a/papermill_origami/_version.py +++ b/papermill_origami/_version.py @@ -1 +1 @@ -version = "0.0.5" +version = "0.0.6" diff --git a/pyproject.toml b/pyproject.toml index d2570b0..d025057 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ [tool.poetry] name = "papermill-origami" -version = "0.0.5" +version = "0.0.6" description = "The noteable API interface" authors = ["Matt Seal "] maintainers = ["Matt Seal "]