From 6271ecd6de9cec664a14dfd2c6c02b4ee9361803 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tibor=20=C5=A0imko?= Date: Tue, 26 Sep 2023 14:39:16 +0200 Subject: [PATCH] release: 0.9.2 --- CHANGES.rst | 5 +++-- reana_db/version.py | 4 ++-- setup.py | 6 +++--- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 021903f..9996a3f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,11 @@ Changes ======= -Version 0.9.2 (UNRELEASED) +Version 0.9.2 (2023-09-26) -------------------------- -- Changes CPU and disk quota calculations to improve performance of quota updater. +- Adds progress meter to the logs of the periodic quota updater. +- Changes CPU and disk quota calculations to improve the performance of periodic quota updater. - Fixes the workflow priority calculation to avoid workflows stuck in the ``queued`` status when the number of allowed concurrent workflow is set to zero. Version 0.9.1 (2023-01-18) diff --git a/reana_db/version.py b/reana_db/version.py index f98fff2..0b27cae 100644 --- a/reana_db/version.py +++ b/reana_db/version.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of REANA. -# Copyright (C) 2018, 2019, 2020, 2021, 2022 CERN. +# Copyright (C) 2018, 2019, 2020, 2021, 2022, 2023 CERN. # # REANA is free software; you can redistribute it and/or modify it # under the terms of the MIT License; see LICENSE file for more details. @@ -14,4 +14,4 @@ from __future__ import absolute_import, print_function -__version__ = "0.9.2a1" +__version__ = "0.9.2" diff --git a/setup.py b/setup.py index 3f3403e..ba23e62 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of REANA. -# Copyright (C) 2018, 2019, 2020, 2021, 2022 CERN. +# Copyright (C) 2018, 2019, 2020, 2021, 2022, 2023 CERN. # # REANA is free software; you can redistribute it and/or modify it # under the terms of the MIT License; see LICENSE file for more details. @@ -19,7 +19,7 @@ history = open("CHANGES.rst").read() tests_require = [ - "pytest-reana>=0.9.0,<0.10.0", + "pytest-reana>=0.9.1,<0.10.0", ] extras_require = { @@ -46,7 +46,7 @@ "psycopg2-binary>=2.6.1", "SQLAlchemy>=1.2.7,<1.4.0", "SQLAlchemy-Utils[encrypted]>=0.36.8", - "reana-commons>=0.9.1,<0.10.0", + "reana-commons>=0.9.3,<0.10.0", ] packages = find_packages()