diff --git a/CHANGELOG.md b/CHANGELOG.md index d7f0531a..1e9826c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v0.6.1 (2022-04-29) +### Fix +* **plot:** Fixing memory leak in matplotlib multithreading ([`cc6c4e1`](https://github.com/ing-bank/popmon/commit/cc6c4e16a38267c3d5e80d12b986c458854ba781)) + +### Documentation +* Include link to kedro-popmon ([`aff68b7`](https://github.com/ing-bank/popmon/commit/aff68b72fb7cdf2872ac84d020044086263b0f76)) + ## v0.6.0 (2021-12-13) ### Feature * **comparisons:** Introduce psi and jsd ([`c6a1ca7`](https://github.com/ing-bank/popmon/commit/c6a1ca74da3a4de1f69b919cce047cc0b6377589)) diff --git a/popmon/version.py b/popmon/version.py index 8368b02d..5b3d3e4e 100644 --- a/popmon/version.py +++ b/popmon/version.py @@ -1,3 +1,3 @@ """THIS FILE IS AUTO-GENERATED BY SETUP.PY.""" -version = "0.6.0" +version = "0.6.1" diff --git a/setup.py b/setup.py index f352e3ce..e27a90ec 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -__version__ = "0.6.0" +__version__ = "0.6.1" with open("requirements.txt") as f: REQUIREMENTS = f.read().splitlines()