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"