From 35726eea57791eecd2327767958530e62383e815 Mon Sep 17 00:00:00 2001 From: Willem Deconinck Date: Thu, 6 Jul 2023 11:32:22 +0200 Subject: [PATCH] Version 0.34.0 --- AUTHORS | 20 ++++++++++++++------ CHANGELOG.md | 22 ++++++++++++++++++++++ VERSION | 2 +- tools/generate-authors.py | 4 ++++ 4 files changed, 41 insertions(+), 7 deletions(-) diff --git a/AUTHORS b/AUTHORS index cdf736ded..23103faf0 100644 --- a/AUTHORS +++ b/AUTHORS @@ -13,23 +13,31 @@ Thanks for contributions from - Andreas Mueller - Baudouin Raoult - Florian Rathgeber -- Marek Wlasak - Oliver Lomax +- Marek Wlasak - Daniel Holdaway - Daan Degrauwe - Philippe Marguinaud +- Slavko Brdar - Gianmarco Mengaldo +- Dušan Figala +- Benjamin Menetrier - James Hawkes - Mats Hamrud -- Benjamin Menetrier - Rahul Mahajan +- Toby Searle - Olivier Iffrig - Christian Kuehnlein - Iain Russell +- Marco Milan +- Daniel Tipping - Domokos Sármány -- Steven Vahl +- Lorenzo Milazzo +- Francois Hebert +- Yannick Trémolet - Mark J. Olah -- Michael Lange +- Sam Hatfield - Peter Bispham -- Slavko Brdar -- Yannick Trémolet +- Paul Cresswell +- Steven Vahl +- Michael Lange diff --git a/CHANGELOG.md b/CHANGELOG.md index e04f14468..068d2b7fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,27 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html ## [Unreleased] +## [0.34.0] - 2023-07-10 +### Added +- Fieldset::metadata (#126) +- Fieldset::adjointHaloExchange +- Field/Fieldset::clone method +- Functions to enable/disable FPE +- Add function to build mesh from imported connectivity data (#135) +- Implement field::for_each capabilities (#139) +- Introduce colon-separated environment variable ATLAS_PLUGIN_PATH to simplify plugin detection +- Introduce atlas::mdspan, contributed from github.com/kokkos/mdspan +- Add function Field::horizontal_dimension() -> std::vector +- Setup horizontal_dimensions() for BlockStructuredColumns fields +- Upgrade the halo exchange procedure for the function space 'PointCloud' (#120) + +### Fixed +- Enable latitude normalisation in KDTree coordinate transform (#140) +- Fix LocalView indexing bug for non-contiguous slices +- C++17 flag public propagation to downstream C++ CMake packages +- Fix cells().global_index() metadata for RegularLonLat grids in StructuredMeshGenerator +- BuildHalo: mark interior added cells as ghost + ## [0.33.0] - 2023-04-03 ### Added - Add support for StructuredPartitionPolygon with halo > 0 @@ -443,6 +464,7 @@ Fix StructuredInterpolation2D with retry for failed stencils ## 0.13.0 - 2018-02-16 [Unreleased]: https://github.com/ecmwf/atlas/compare/master...develop +[0.33.0]: https://github.com/ecmwf/atlas/compare/0.33.0...0.34.0 [0.33.0]: https://github.com/ecmwf/atlas/compare/0.32.1...0.33.0 [0.32.1]: https://github.com/ecmwf/atlas/compare/0.32.0...0.32.1 [0.32.0]: https://github.com/ecmwf/atlas/compare/0.31.1...0.32.0 diff --git a/VERSION b/VERSION index be386c9ed..85e60ed18 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.33.0 +0.34.0 diff --git a/tools/generate-authors.py b/tools/generate-authors.py index 1384bca97..1ee9ecaf4 100755 --- a/tools/generate-authors.py +++ b/tools/generate-authors.py @@ -21,6 +21,10 @@ def real_name(name): "benjaminmenetrier" : "Benjamin Menetrier", "danholdaway" : "Daniel Holdaway", "MarekWlasak" : "Marek Wlasak", + "odlomax" : "Oliver Lomax", + "MO-marcomilan" : "Marco Milan", + "twsearle" : "Toby Searle", + "Dusan Figala" : "Dušan Figala", } if name in alias: return alias[name]