diff --git a/RELEASE.md b/RELEASE.md index 8b0c449..7547ff0 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,4 +1,8 @@ # Upcoming release +# Release 0.12.0 +* Switch to Pyvis for graph visualisation and remove dependency on Graphviz + +# Release 0.11.2 * Support newer version of Numpy * Support newer version of Scikit-learn * Remove python 3.6, 3.7 support diff --git a/causalnex/__init__.py b/causalnex/__init__.py index 4c6b282..83d986d 100644 --- a/causalnex/__init__.py +++ b/causalnex/__init__.py @@ -30,6 +30,6 @@ causalnex toolkit for causal reasoning (Bayesian Networks / Inference) """ -__version__ = "0.11.2" +__version__ = "0.12.0" __all__ = ["structure", "discretiser", "evaluation", "inference", "network", "plots"]