From bce5dae361420be19d614d74dd9f601d96018146 Mon Sep 17 00:00:00 2001 From: Gabriel Azevedo Ferreira <57528979+GabrielAzevedoFerreiraQB@users.noreply.github.com> Date: Thu, 20 Apr 2023 21:16:49 +0800 Subject: [PATCH] Release Notes 0.12.0 (#249) * temp (#242) * Limiting numpy version (#217) * adding line on yml - no effect * adding line on yml - no effect * changing req.txt * changing req.txt * changing req.txt * adding setuptools requirement (#218) * adding setuptools requirement * adding setuptools requirement * update dictionaries to pass linting (#230) * Refactor/unlock numpy kl (#235) * unlocking numpy * unlocking numpy * unlocking numpy * dependency fixes for docs and linters * requirement fixes : numpy <1.24 for all python versions --------- Co-authored-by: kyle_lim * Simplifying requirements - Numpy version range (#236) * Remove python 3.6 and 3.7 support (#234) * remove python 3.6 and 3.7 support * update documentation * remove comment regarding ignoring a warning when running `make build-docs` * removing ipython from test requiremnets * Update README.md Co-authored-by: Philip Pilgerstorfer <34248114+qbphilip@users.noreply.github.com> --------- Co-authored-by: GabrielAz Co-authored-by: Gabriel Azevedo Ferreira <57528979+GabrielAzevedoFerreiraQB@users.noreply.github.com> Co-authored-by: Philip Pilgerstorfer <34248114+qbphilip@users.noreply.github.com> * unlocking numpy (#238) Co-authored-by: Gabriel Azevedo * Release 0.11.2 (#239) Co-authored-by: Gabriel Azevedo --------- Co-authored-by: ElisabethSesterHussQB <92664441+ElisabethSesterHussQB@users.noreply.github.com> Co-authored-by: kyle_lim Co-authored-by: Philip Pilgerstorfer <34248114+qbphilip@users.noreply.github.com> Co-authored-by: Gabriel Azevedo * Release Notes --------- Co-authored-by: ElisabethSesterHussQB <92664441+ElisabethSesterHussQB@users.noreply.github.com> Co-authored-by: kyle_lim Co-authored-by: Philip Pilgerstorfer <34248114+qbphilip@users.noreply.github.com> Co-authored-by: Gabriel Azevedo --- RELEASE.md | 4 ++++ causalnex/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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"]