From 421da623d87fa21817e572f3a25df4dcc6a47bcb Mon Sep 17 00:00:00 2001 From: Michael Tarnawa Date: Fri, 12 Jul 2024 12:16:49 +0200 Subject: [PATCH] Heat 1.4.2 preparation (#1562) * Update version.py * Update CHANGELOG.md * Apply suggestions from code review Co-authored-by: Claudia Comito <39374113+ClaudiaComito@users.noreply.github.com> * Update CHANGELOG.md --------- Co-authored-by: Claudia Comito <39374113+ClaudiaComito@users.noreply.github.com> --- CHANGELOG.md | 19 +++++++++++++++++++ heat/core/version.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3d62cbafa..b3cbfdac90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# v1.4.2 - Maintenance release + +## Changes + +### Maintenance + +- [#1467](https://github.com/helmholtz-analytics/heat/pull/1467), [#1525](https://github.com/helmholtz-analytics/heat/pull/1525) Support PyTorch 2.3.1 (by @mtar) +- [#1535](https://github.com/helmholtz-analytics/heat/pull/1535) Address test failures after netCDF4 1.7.1, numpy 2 releases (by @ClaudiaComito) + +# v1.4.1 - Bug fix release + +## Changes + +### Bug fixes +- #1472 DNDarrays returned by `_like` functions default to same device as input DNDarray (by @mrfh92, @ClaudiaComito) + +### Maintenance +- #1441 added names of non-core members in citation file (by @mrfh92) + # v1.4.0 - Interactive HPC tutorials, distributed FFT, batch-parallel clustering, support PyTorch 2.2.2 ## Changes diff --git a/heat/core/version.py b/heat/core/version.py index 8ac31a2616..f957130f7b 100644 --- a/heat/core/version.py +++ b/heat/core/version.py @@ -4,7 +4,7 @@ """Indicates Heat's main version.""" minor: int = 4 """Indicates feature extension.""" -micro: int = 1 +micro: int = 2 """Indicates revisions for bugfixes.""" extension: str = None """Indicates special builds, e.g. for specific hardware."""