diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ec0bf8..094565f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,13 +7,21 @@ and this project strives to adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +### [0.1.post1] - 2022-04-11 + +#### Administrative + +- Fix semantic error in README.md regarding variable restoration behavior + after code cell execution (variables *are* restored by default) + + ### [0.1] - 2022-04-06 #### Features - * Per-cell temporary variable filtering based on starts-with and ends-with - filters. - * `pip`-installable packaging for PyPI upload using the recent - PEP621 `pyproject.toml` project config for `setuptools`. - * Includes a helper script to simplify installation/upgrade of the - extension files to the user-space Jupyter extension location. +- Per-cell temporary variable filtering based on starts-with and ends-with + filters. +- `pip`-installable packaging for PyPI upload using the recent + PEP621 `pyproject.toml` project config for `setuptools`. +- Includes a helper script to simplify installation/upgrade of the + extension files to the user-space Jupyter extension location. diff --git a/src/jupyter_tempvars/version.py b/src/jupyter_tempvars/version.py index 39d7596..0dd166b 100644 --- a/src/jupyter_tempvars/version.py +++ b/src/jupyter_tempvars/version.py @@ -25,4 +25,4 @@ """ -__version__ = "0.2.dev1" +__version__ = "0.1.post1"