diff --git a/CHANGELOG.md b/CHANGELOG.md index 749cbbb..786f83c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## v0.6.1 2023-04-22 + +A patch release to fix compatibility with sqlalchemy <1.4. + +- FIX: compatibility with SQLAlchemy < 1.4.0 [#105](https://github.com/executablebooks/jupyter-cache/pull/105) @DimitriPapadopoulos + ## v0.6.0 2023-04-21 This is a minor release to improve our packaging infrastructure and to support several new versions of dependencies. diff --git a/jupyter_cache/__init__.py b/jupyter_cache/__init__.py index 1d1446a..4ca013d 100644 --- a/jupyter_cache/__init__.py +++ b/jupyter_cache/__init__.py @@ -1,5 +1,5 @@ # NOTE: never import anything here, in order to maintain CLI speed -__version__ = "0.6.0" +__version__ = "0.6.1" def get_cache(path, cache_cls=None):