From 4bdcd9845536f4636140d4e39b50ce7e6c03220d Mon Sep 17 00:00:00 2001 From: Niels Nuyttens Date: Fri, 6 Sep 2024 23:30:37 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.12.0=20=E2=86=92=200.12.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .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 89bca085..752b0f73 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.0 +current_version = 0.12.1 commit = True tag = True diff --git a/README.md b/README.md index 42ccc5de..e91a1889 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,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.12.0]** | New features, bug fixes. | +| 💎 **[New in v0.12.1]** | 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! | @@ -79,7 +79,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.12.0]: https://github.com/NannyML/nannyml/releases/latest/ +[new in v0.12.1]: 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 @@ -294,11 +294,11 @@ Curious what we are working on next? Have a look at our [roadmap](https://bit.ly To cite NannyML in academic papers, please use the following BibTeX entry. -### Version 0.12.0 +### Version 0.12.1 ``` @misc{nannyml, - title = {{N}anny{ML} (release 0.12.0)}, + title = {{N}anny{ML} (release 0.12.1)}, howpublished = {\url{https://github.com/NannyML/nannyml}}, month = mar, year = 2023, diff --git a/nannyml/__init__.py b/nannyml/__init__.py index e96e2cd2..ae431332 100644 --- a/nannyml/__init__.py +++ b/nannyml/__init__.py @@ -31,7 +31,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.12.0' +__version__ = '0.12.1' import logging diff --git a/pyproject.toml b/pyproject.toml index da140dbe..520b1b37 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "nannyml" -version = "0.12.0" +version = "0.12.1" homepage = "https://github.com/nannyml/nannyml" description = "NannyML, Your library for monitoring model performance." authors = ["Niels Nuyttens "]