diff --git a/CHANGELOG.md b/CHANGELOG.md index a7716213..78a4d44b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,9 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased + +## [0.7.0] - 29.07.2024 + ### Added - Extended Theory&Practice RecSys baselines tutorial ([#139](https://github.com/MobileTeleSystems/RecTools/pull/139)) -- `MetricsApp` to create plotly scatterplot widgets for metric-to-metric trade-off analysis ([#140](https://github.com/MobileTeleSystems/RecTools/pull/140)) +- `MetricsApp` to create plotly scatterplot widgets for metric-to-metric trade-off analysis ([#140](https://github.com/MobileTeleSystems/RecTools/pull/140), [#154](https://github.com/MobileTeleSystems/RecTools/pull/154)) - `Intersection` metric ([#148](https://github.com/MobileTeleSystems/RecTools/pull/148)) - `PartialAUC` and `PAP` metrics ([#149](https://github.com/MobileTeleSystems/RecTools/pull/149)) - New params (`tol`, `maxiter`, `random_state`) to the `PureSVD` model ([#130](https://github.com/MobileTeleSystems/RecTools/pull/130)) diff --git a/pyproject.toml b/pyproject.toml index 15a96c02..153c6ff6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "RecTools" -version = "0.6.0" +version = "0.7.0" description = "An easy-to-use Python library for building recommendation systems" license = "Apache-2.0" authors = [ diff --git a/rectools/version.py b/rectools/version.py index 863d89e8..2f49955d 100644 --- a/rectools/version.py +++ b/rectools/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -VERSION = "0.6.0" +VERSION = "0.7.0"