diff --git a/CHANGELOG.md b/CHANGELOG.md index a3d62cbaf..b3cbfdac9 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 8ac31a261..f957130f7 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."""