Skip to content

Commit

Permalink
release: 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborsimko committed Sep 26, 2023
1 parent 0dc7140 commit 6271ecd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions reana_db/version.py
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -14,4 +14,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.9.2a1"
__version__ = "0.9.2"
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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 = {
Expand All @@ -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()
Expand Down

0 comments on commit 6271ecd

Please sign in to comment.