From 5ec1ea4a3eb799d6b0d7f11daacf73e84d3b39f0 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 4 Oct 2023 20:31:43 +0200 Subject: [PATCH 1/2] bump version to 0.1.0, add RELEASE_NOTES --- RELEASE_NOTES | 19 +++++++++++++++++++ pyproject.toml | 4 ++-- setup.cfg | 4 ++-- 3 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 RELEASE_NOTES diff --git a/RELEASE_NOTES b/RELEASE_NOTES new file mode 100644 index 00000000..beecb987 --- /dev/null +++ b/RELEASE_NOTES @@ -0,0 +1,19 @@ +This file contains a description of the major changes to the EESSI test suite. +For more detailed information, please see the git log. + +v0.1.0 (4 October 2023) +----------------------- + +This is the first release of the EESSI test suite. + +It includes: + +* A well-structured `eessi.testsuite` Python package that provides constants, utilities, hooks, and tests, which can be installed with "`pip install`". +* Tests for GROMACS and TensorFlow in `eessi.testsuite.tests.apps` that leverage the functionality provided by `eessi.testsuite.*`. +* Examples of ReFrame configuration files for various systems in the `config` subdirectory. +* A `common_logging_config()` function to facilitate the ReFrame logging configuration. +* A set of standard device types and features that can be used in the partitions section of the ReFrame configuration file. +* A set of tags (CI + scale) that can be used to filter checks. +* Scripts that show how to run the test suite. + +For documentation, see https://eessi.io/docs/test-suite . diff --git a/pyproject.toml b/pyproject.toml index 7ffffe55..3c374a5c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "eessi-testsuite" -version = "0.0.2" +version = "0.1.0" description = "Test suite for the EESSI software stack" readme = "README.md" license = {file = "LICENSE"} @@ -14,7 +14,7 @@ classifiers = [ requires-python = ">=3.6" [project.urls] -"Homepage" = "https://eessi.github.io/docs/software_testing/" +"Homepage" = "https://eessi.io/docs/test-suite" "Bug Tracker" = "https://github.com/EESSI/test-suite/issues" [tool.setuptools.packages.find] diff --git a/setup.cfg b/setup.cfg index 737b6e84..f48c4789 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,12 +1,12 @@ [metadata] name = eessi-testsuite -version = 0.0.2 +version = 0.1.0 description = Test suite for the EESSI software stack long_description = file: README.md, LICENSE classifiers = Programming Language :: Python :: 3 project_urls = - Homepage = https://eessi.github.io/docs/software_testing/ + Homepage = https://eessi.io/docs/test-suite Bug Tracker = https://github.com/EESSI/test-suite/issues [options] From 47f393f42d14f98ad06b8af12e2b299d11b5ba3a Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 5 Oct 2023 09:00:30 +0200 Subject: [PATCH 2/2] bump release date to 5 Oct'23 --- RELEASE_NOTES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index beecb987..0bb97deb 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,7 +1,7 @@ This file contains a description of the major changes to the EESSI test suite. For more detailed information, please see the git log. -v0.1.0 (4 October 2023) +v0.1.0 (5 October 2023) ----------------------- This is the first release of the EESSI test suite.