From 347c224339e04d5d0d5c72b4fdd4ce7ac35f93bb Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Fri, 24 Jan 2025 13:19:58 +0100 Subject: [PATCH] Widen the SDK dependency range to support 1.0.0rc1500 Signed-off-by: Leandro Lucarella --- RELEASE_NOTES.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index c5dd530..bf30540 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -15,6 +15,8 @@ * A new feature "unify running intervals" has been added to the `Dispatcher.new_running_state_event_receiver` method. Using it, you can automatically merge & unify consecutive and overlapping dispatch start/stop events of the same type. E.g. dispatch `A` starting at 10:10 and ending at 10:30 and dispatch `B` starts at 10:30 until 11:00, with the feature enabled this would in total trigger one start event, one reconfigure event at 10:30 and one stop event at 11:00. +* The SDK dependency was widened to allow versions up to (excluding) v1.0.0-rc1600. + ## Bug Fixes diff --git a/pyproject.toml b/pyproject.toml index 0dcc6b8..58623ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ dependencies = [ # Make sure to update the version for cross-referencing also in the # mkdocs.yml file when changing the version here (look for the config key # plugins.mkdocstrings.handlers.python.import) - "frequenz-sdk >= 1.0.0-rc1302, < 1.0.0-rc1500", + "frequenz-sdk >= 1.0.0-rc1302, < 1.0.0-rc1600", "frequenz-channels >= 1.3.0, < 2.0.0", "frequenz-client-dispatch >= 0.8.4, < 0.9.0", ]