From 184d81bd9144b05ee11d6bfa8cb37e54df1cb4df Mon Sep 17 00:00:00 2001 From: Marco Donadoni Date: Thu, 30 Nov 2023 09:54:35 +0100 Subject: [PATCH] release: 0.9.3 --- CHANGES.rst | 8 ++++---- reana_db/version.py | 2 +- setup.py | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 2558225..83a68f9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,12 +1,12 @@ Changes ======= -Version 0.9.3 (UNRELEASED) +Version 0.9.3 (2023-12-01) -------------------------- -- Changes the ``Workflow`` table to replace the ``run_number`` column with two new columns ``run_number_major`` and ``run_number_minor``, in order to allow for more than 9 restarts. -- Changes the names of database constraints to follow the same naming convention. -- Changes the database indexes to improve performance of common database queries. +- Changes the ``Workflow`` table to replace the ``run_number`` column with two new columns ``run_number_major`` and ``run_number_minor`` in order to allow for more than nine restarts of user workflows. +- Changes the names of database table, column, index and key constraints in order to follow the SQLAlchemy upstream naming conventions everywhere. +- Changes several database index definitions in order to improve performance of most common database queries. Version 0.9.2 (2023-09-26) -------------------------- diff --git a/reana_db/version.py b/reana_db/version.py index 0b27cae..e2ea775 100644 --- a/reana_db/version.py +++ b/reana_db/version.py @@ -14,4 +14,4 @@ from __future__ import absolute_import, print_function -__version__ = "0.9.2" +__version__ = "0.9.3" diff --git a/setup.py b/setup.py index ba23e62..7623800 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ history = open("CHANGES.rst").read() tests_require = [ - "pytest-reana>=0.9.1,<0.10.0", + "pytest-reana>=0.9.2,<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.3,<0.10.0", + "reana-commons>=0.9.4,<0.10.0", ] packages = find_packages()