diff --git a/CHANGELOG.md b/CHANGELOG.md index 29e4d6c6..ce6b2293 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [0.15.0] - 17.07.2025 + ### Added - `extras` argument to `SequenceDataset`, `extra_cols` argument to `TransformerDataPreparatorBase`, `session_tower_forward` and `item_tower_forward` methods to `SimilarityModuleBase` ([#287](https://github.com/MobileTeleSystems/RecTools/pull/287)) - Support for resaving transformer models multiple times and loading trainer state ([#289](https://github.com/MobileTeleSystems/RecTools/pull/289)) diff --git a/pyproject.toml b/pyproject.toml index 7fe0d91a..376f1edf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "RecTools" -version = "0.14.0" +version = "0.15.0" description = "An easy-to-use Python library for building recommendation systems" license = "Apache-2.0" authors = [ diff --git a/rectools/dataset/interactions.py b/rectools/dataset/interactions.py index 2cfda50a..2acd9496 100644 --- a/rectools/dataset/interactions.py +++ b/rectools/dataset/interactions.py @@ -1,4 +1,4 @@ -# Copyright 2022-2024 MTS (Mobile Telesystems) +# Copyright 2022-2025 MTS (Mobile Telesystems) # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/rectools/version.py b/rectools/version.py index 869b5d9b..85023cc7 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.14.0" +VERSION = "0.15.0"