From 7725914f3e2977847cb52453b030b79316b3015c Mon Sep 17 00:00:00 2001 From: Ryan Wolbeck Date: Tue, 13 Feb 2024 17:05:57 -0600 Subject: [PATCH 1/2] update release --- RELEASE_NOTES.md | 12 ++++++++++++ pyproject.toml | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index ca099b0..b892a3e 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,10 +1,22 @@ # RELEASE NOTES +## Version 0.5.0 + +* Drops support for python 3.7 and 3.8 +* Now support for Python 3.11 and 3.12 +* Fixed issue with np.bool +* Optimized memory usage in pred-dist +* Removed declared pandas dependency +* Significant improvements to run times on tests during development +* Minor enhancements to github actions + ## Version 0.4.2 + * Fix deprecated numpy type alias. This was causing a warning with NumPy >=1.20 and an error with NumPy >=1.24 * Remove pandas as a declared dependency ## Version 0.4.1 + ### Added `partial_fit` method for incremental learning NGBoost now includes a new `partial_fit` method that allows for incremental learning. This method appends new base models to the existing ones, which can be useful when new data becomes available over time or when the data is too large to fit in memory all at once. diff --git a/pyproject.toml b/pyproject.toml index 944e1f1..3ad6616 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ngboost" -version = "0.4.2dev" +version = "0.5.0dev" description = "Library for probabilistic predictions via gradient boosting." authors = ["Stanford ML Group "] readme = "README.md" From 9cb734a029176cc1c9056b835ecd948b5615b5d0 Mon Sep 17 00:00:00 2001 From: Ryan Wolbeck Date: Tue, 13 Feb 2024 18:08:30 -0600 Subject: [PATCH 2/2] fix typo in release notes --- RELEASE_NOTES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index b892a3e..2986184 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -3,7 +3,7 @@ ## Version 0.5.0 * Drops support for python 3.7 and 3.8 -* Now support for Python 3.11 and 3.12 +* Now supports Python 3.11 and 3.12 * Fixed issue with np.bool * Optimized memory usage in pred-dist * Removed declared pandas dependency