diff --git a/RELEASE.md b/RELEASE.md index 8e28e0f8..ec67f23e 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -2,6 +2,8 @@ ## Unreleased +## 2.1.0 + ### Added - ability to live-update the min-intersection threshold for edges on the d3 vis (#231) @@ -9,8 +11,10 @@ ### Fixed/Changed - Update docs and sphinx-gallery to build again. -- Update CI/CD runners to test modern versions of python; drop python 3.7 compatibility. +- Update CI/CD runners to test modern versions of python; drop python 3.6, 3.7 compatibility. - Change visual tests to use built-in `int` type rather than `np.uint8`. +- Removed deprecated np.asscalar call (#247, #249, #252). +- Removed `python-igraph` dependency in favor of `igraph` (#249) ## 2.0.1 diff --git a/kmapper/_version.py b/kmapper/_version.py index 159d48b8..9aa3f903 100644 --- a/kmapper/_version.py +++ b/kmapper/_version.py @@ -1 +1 @@ -__version__ = "2.0.1" +__version__ = "2.1.0" diff --git a/kmapper/plotlyviz.py b/kmapper/plotlyviz.py index 6add0f0a..e0e5018d 100644 --- a/kmapper/plotlyviz.py +++ b/kmapper/plotlyviz.py @@ -6,14 +6,10 @@ from .visuals import ( _scale_color_values, _size_node, - _format_projection_statistics, _format_cluster_statistics, _node_color_function, _format_meta, - _to_html_format, - _map_val2color, _graph_data_distribution, - _build_histogram, _tooltip_components, )