From 54cd223a40b61a1246b4dfd580d1125b2f054add Mon Sep 17 00:00:00 2001 From: Jusong Yu Date: Thu, 19 Sep 2024 11:36:08 +0200 Subject: [PATCH 1/2] CI test badge fixed --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e71286..f1951b3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Build Status](https://github.com/aiidateam/aiida-hyperqueue/workflows/ci/badge.svg?branch=main)](https://github.com/aiidateam/aiida-hyperqueue/actions) +[![Build Status](https://github.com/aiidateam/aiida-hyperqueue/workflows/ci/badge.svg)](https://github.com/aiidateam/aiida-hyperqueue/actions) [![Docs status](https://readthedocs.org/projects/aiida-hyperqueue/badge)](http://aiida-hyperqueue.readthedocs.io/) [![PyPI version](https://badge.fury.io/py/aiida-hyperqueue.svg)](https://badge.fury.io/py/aiida-hyperqueue) From d975810aabfb057d40f0a3438e6e75753c3afe60 Mon Sep 17 00:00:00 2001 From: Jusong Yu Date: Thu, 19 Sep 2024 11:43:12 +0200 Subject: [PATCH 2/2] Bump version to v0.2.0 with update CHANGELOG --- CHANGELOG.md | 14 ++++++++++++++ aiida_hyperqueue/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56e37ca..0541a51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## v0.2.0 + +- [#18](https://github.com/aiidateam/aiida-hyperqueue/pull/18) A large refactoring with following changes: + + - correctly support memory setup for resources. + - support turn on hyperthreading with latest version of hyperqueue. + - Support install hq to remote computer over CLI. + - adding unit tests with submit to real hq using the fixture from hyperqueue repo. + - Fix the submit bug for hq > 0.12 that resources are configured twice in job script and submit command. + +- [#26](https://github.com/aiidateam/aiida-hyperqueue/pull/26) Change alloc add worker name (name appear in slurm queue) `aiida` -> `ahq` +- [#24](https://github.com/aiidateam/aiida-hyperqueue/pull/24) Use JSON format as output for hq job list and hq submit + + ## v0.1.1 Only a small fix to the `README.md` was added here, this release is mainly to test the automated deployment to PyPI. diff --git a/aiida_hyperqueue/__init__.py b/aiida_hyperqueue/__init__.py index 4ebfc26..07d4a80 100644 --- a/aiida_hyperqueue/__init__.py +++ b/aiida_hyperqueue/__init__.py @@ -5,4 +5,4 @@ AiiDA plugin for the HyperQueue metascheduler """ -__version__ = "0.1.1" +__version__ = "0.2.0"