diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 94e60068b..44eea0588 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,16 @@ Changelog ========== +.. _2.3.0: + +2.3.0 - 2023-06-07 +~~~~~~~~~~~~~~~~~~~ + +- Changed the reporting command (cronjob) and added statistics calculations: + - Number of users in total and in different roles + - Number of projects: Total, active and non-active + - Amount of data (in TBs) currently stored and uploaded since start + .. _2.2.62: 2.2.62 - 2023-03-20 diff --git a/SPRINTLOG.md b/SPRINTLOG.md index d92acf65d..261a57de3 100644 --- a/SPRINTLOG.md +++ b/SPRINTLOG.md @@ -254,3 +254,4 @@ _Nothing merged in CLI during this sprint_ - Save number of unique Project Owners ([#1421](https://github.com/ScilifelabDataCentre/dds_web/pull/1421)) - Save amount of TB's currently stored in system ([#1424](https://github.com/ScilifelabDataCentre/dds_web/pull/1424)) - Save amount of TB's uploaded since start ([#1430](https://github.com/ScilifelabDataCentre/dds_web/pull/1430)) +- New version: 2.3.0 ([#1433](https://github.com/ScilifelabDataCentre/dds_web/pull/1433)) diff --git a/dds_web/version.py b/dds_web/version.py index 705188248..55e470907 100644 --- a/dds_web/version.py +++ b/dds_web/version.py @@ -1 +1 @@ -__version__ = "2.2.62" +__version__ = "2.3.0" diff --git a/tests/test_version.py b/tests/test_version.py index 145e3b810..475acb1ff 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert version.__version__ == "2.2.62" + assert version.__version__ == "2.3.0"