From 0ddb7f6ace8b75dd1f08e686d4d966a2bcab054b Mon Sep 17 00:00:00 2001 From: Berkant <51971304+Berkant03@users.noreply.github.com> Date: Tue, 10 Sep 2024 15:23:30 +0200 Subject: [PATCH] Maintenance/version change (#1644) * Change dev -> rc1 * Update CHANGELOG.md * Update CITATION.cff --------- Co-authored-by: Claudia Comito <39374113+ClaudiaComito@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- CHANGELOG.md | 52 ++++++++++++++++++++++++++++++++++++++++++++ CITATION.cff | 8 +++++-- heat/core/version.py | 2 +- 3 files changed, 59 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3cbfdac90..de6f6db2dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,55 @@ +# v1.5.0-rc1 - Release Candidate + +## Changes + +### Cluster + +- #1593 Improved Batch Parallelization. (by @mrfh92) + +### Data + +- #1529 Make `dataset.ishuffle` optional. + +### IO + +- #1602 Improved load balancing when loading .npy files from path. (by @Reisii) +- #1551 Improved load balancing when loading .csv files from path. (by @Reisii) + +### Linear Algebra + +- #1261 Batched matrix multiplication. (by @FOsterfeld) +- #1504 Add solver for triangular systems. (by @FOsterfeld) + +### Manipulations + +- #1419 Implement distributed `unfold` operation. (by @FOsterfeld) + +### Random + +- #1508 Introduce Batchparallel for RNG as default. (by @mrfh92) + +### Signal + +- #1515 Support batch 1-d convolution in `ht.signal.convolve`. (by @ClaudiaComito) + +### Statistics + +- #1510 Support multiple axes for `ht.percentile`. (by @ClaudiaComito) + +### Sparse + +- #1377 Distributed Compressed Sparse Column Matrix. (by @Mystic-Slice) + +### Other + +- #1618 Support mpi4py 4.x.x (by @JuanPedroGHM) + + +## Contributors + +@ClaudiaComito, @FOsterfeld, @JuanPedroGHM, @Reisii, @mrfh92, @mtar and Hoppe + + # v1.4.2 - Maintenance release ## Changes diff --git a/CITATION.cff b/CITATION.cff index ac0501e0b6..beb327a0aa 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -30,6 +30,12 @@ authors: - family-names: Tarnawa given-names: Michael # release contributors - add as needed + - family-names: Osterfeld + given-names: Fynn + - family-names: Nguyen Xuan + given-names: Tu + - family-names: Vaithinathan Aravindan + given-names: Ashwath repository-code: 'https://github.com/helmholtz-analytics/heat' url: 'https://helmholtz-analytics.github.io/heat/' repository: 'https://heat.readthedocs.io/en/stable/' @@ -64,8 +70,6 @@ preferred-citation: given-names: Achim - family-names: Streit given-names: Achim - - family-names: Vaithinathan Aravindan - given-names: Ashwath year: 2020 collection-title: 2020 IEEE International Conference on Big Data (IEEE Big Data 2020) collection-doi: 10.1109/BigData50022.2020.9378050 diff --git a/heat/core/version.py b/heat/core/version.py index 4587bdd5d1..51d144093d 100644 --- a/heat/core/version.py +++ b/heat/core/version.py @@ -6,7 +6,7 @@ """Indicates feature extension.""" micro: int = 0 """Indicates revisions for bugfixes.""" -extension: str = "dev" +extension: str = "rc1" """Indicates special builds, e.g. for specific hardware.""" if not extension: