From c81d56b979cf0c009963eff4712a75afde39e696 Mon Sep 17 00:00:00 2001 From: Miguel Fierro <3491412+miguelgfierro@users.noreply.github.com> Date: Tue, 30 Apr 2024 06:47:49 +0200 Subject: [PATCH] Prepare for Release Recommenders 1.2.0 (#2092) * New release Recommenders 1.2.0 :boom::boom: * updated news Signed-off-by: miguelgfierro --------- Signed-off-by: miguelgfierro Co-authored-by: miguelgfierro --- NEWS.md | 9 +++++++++ README.md | 8 +++----- recommenders/__init__.py | 2 +- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/NEWS.md b/NEWS.md index d417976c9..9d8b1aeb6 100644 --- a/NEWS.md +++ b/NEWS.md @@ -5,12 +5,21 @@ Licensed under the MIT License. # What's New +## Update May 2, 2024 + +We have a new release [Recommenders 1.2.0](https://github.com/microsoft/recommenders/releases/tag/1.2.0)! + +So many changes since our last release. We have full tests on Python 3.8 to 3.11 (around 1800 tests), upgraded performance in many algorithms, reviewed notebooks, and many more improvements. + + ## Update October 10, 2023 We are pleased to announce that this repository (formerly known as Microsoft Recommenders, https://github.com/microsoft/recommenders), has joined the [Linux Foundation of AI and Data](https://lfaidata.foundation/) (LF AI & Data)! The new organization, `recommenders-team`, reflects this change. We hope this move makes it easy for anyone to contribute! Our objective continues to be building an ecosystem and a community to sustain open source innovations and collaborations in recommendation systems. +Now to access the repo, instead of going to https://github.com/microsoft/recommenders, you need to go to https://github.com/recommenders-team/recommenders. The old URL will still resolve to the new one, but we recommend that you update your bookmarks. + ## Update August 18, 2023 We moved to a new organization! Now to access the repo, instead of going to https://github.com/microsoft/recommenders, you need to go to https://github.com/recommenders-team/recommenders. The old URL will still resolve to the new one, but we recommend you to update your bookmarks. diff --git a/README.md b/README.md index 89ef90ecf..dccc06177 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,11 @@ Licensed under the MIT License. -## What's New (October, 2023) +## What's New (May, 2024) -We are pleased to announce that this repository (formerly known as Microsoft Recommenders, https://github.com/microsoft/recommenders), has joined the [Linux Foundation of AI and Data](https://lfaidata.foundation/) (LF AI & Data)! The new organization, `recommenders-team`, reflects this change. +We have a new release [Recommenders 1.2.0](https://github.com/microsoft/recommenders/releases/tag/1.2.0)! -We hope this move makes it easy for anyone to contribute! Our objective continues to be building an ecosystem and a community to sustain open source innovations and collaborations in recommendation systems. - -Now to access the repo, instead of going to https://github.com/microsoft/recommenders, you need to go to https://github.com/recommenders-team/recommenders. The old URL will still resolve to the new one, but we recommend that you update your bookmarks. +So many changes since our last release. We have full tests on Python 3.8 to 3.11 (around 1800 tests), upgraded performance in many algorithms, reviewed notebooks, and many more improvements. ## Introduction diff --git a/recommenders/__init__.py b/recommenders/__init__.py index e28bf197f..87998b029 100644 --- a/recommenders/__init__.py +++ b/recommenders/__init__.py @@ -2,7 +2,7 @@ # Licensed under the MIT License. __title__ = "Recommenders" -__version__ = "1.1.1" +__version__ = "1.2.0" __author__ = "Recommenders contributors" __license__ = "MIT" __copyright__ = "Copyright 2018-present Recommenders contributors."