From 8e8c6063b7304a48966f6d2673945165bf476cbb Mon Sep 17 00:00:00 2001 From: Niels Nuyttens Date: Tue, 24 Jan 2023 11:45:46 +0100 Subject: [PATCH] Bump version Signed-off-by: Niels Nuyttens --- .bumpversion.cfg | 2 +- README.md | 8 ++++---- nannyml/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 563326d6..a6790c30 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.1 +current_version = 0.8.2 commit = True tag = True diff --git a/README.md b/README.md index 815ec8de..098d406f 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ Allowing you to have the following benefits: | 🔬 **[Technical reference]** | Monitor the performance of your ML models. | | 🔎 **[Blog]** | Thoughts on post-deployment data science from the NannyML team. | | 📬 **[Newsletter]** | All things post-deployment data science. Subscribe to see the latest papers and blogs. | -| 💎 **[New in v0.8.1]** | New features, bug fixes. | +| 💎 **[New in v0.8.2]** | New features, bug fixes. | | 🧑‍💻 **[Contribute]** | How to contribute to the NannyML project and codebase. | | **[Join slack]** | Need help with your specific use case? Say hi on slack! | @@ -77,7 +77,7 @@ Allowing you to have the following benefits: [Performance Estimation]: https://nannyml.readthedocs.io/en/stable/how_it_works/performance_estimation.html [Key Concepts]: https://nannyml.readthedocs.io/en/stable/glossary.html [Technical Reference]:https://nannyml.readthedocs.io/en/stable/nannyml/modules.html -[New in v0.8.1]: https://github.com/NannyML/nannyml/releases/latest/ +[New in v0.8.2]: https://github.com/NannyML/nannyml/releases/latest/ [Real World Example]: https://nannyml.readthedocs.io/en/stable/examples/california_housing.html [Blog]: https://www.nannyml.com/blog [Newsletter]: https://mailchi.mp/022c62281d13/postdeploymentnewsletter @@ -197,13 +197,13 @@ univariate_calculator = univariate_calculator.fit(reference) univariate_results = univariate_calculator.calculate(analysis) # Plot drift results for all continuous columns figure = univariate_results.filter( - column_names=univariate_results.continuous_column_names, + column_names=univariate_results.continuous_column_names, methods=['jensen_shannon']).plot(kind='drift') figure.show() # Plot drift results for all categorical columns figure = univariate_results.filter( - column_names=univariate_results.categorical_column_names, + column_names=univariate_results.categorical_column_names, methods=['chi2']).plot(kind='drift') figure.show() diff --git a/nannyml/__init__.py b/nannyml/__init__.py index 77610368..c6487533 100644 --- a/nannyml/__init__.py +++ b/nannyml/__init__.py @@ -32,7 +32,7 @@ # Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer. # 'X.Y.dev0' is the canonical version of 'X.Y.dev' # -__version__ = '0.8.1' +__version__ = '0.8.2' import logging diff --git a/pyproject.toml b/pyproject.toml index e2c2d8fc..19b56d1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "nannyml" -version = "0.8.1" +version = "0.8.2" homepage = "https://github.com/nannyml/nannyml" description = "NannyML, Your library for monitoring model performance." authors = ["Niels Nuyttens "]