From ded50d01e885ea1ff1c4fc6547ca8e9782ee94b1 Mon Sep 17 00:00:00 2001 From: Philipp Grete Date: Thu, 21 Mar 2024 09:49:46 +0100 Subject: [PATCH] Add new info for 24.03 release (#1029) --- CHANGELOG.md | 23 +++++++++++++++++++++-- CMakeLists.txt | 4 ++-- 2 files changed, 23 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fbb4fe703c2c..4e7f0d24244c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ ## Current develop +### Added (new features/APIs/variables/...) + + +### Changed (changing behavior/API/variables/...) + + +### Fixed (not changing behavior/API/variables/...) + + +### Infrastructure (changes irrelevant to downstream codes) + + +### Removed (removing behavior/API/varaibles/...) + + +### Incompatibilities (i.e. breaking changes) + + +## Release 24.03 +Date: 2024-03-21 + ### Added (new features/APIs/variables/...) - [[PR 852]](https://github.com/parthenon-hpc-lab/parthenon/pull/852) Add Mesh version of UserWorkBeforeOutput - [[PR 998]](https://github.com/parthenon-hpc-lab/parthenon/pull/998) tensor indices added to sparse pack @@ -31,8 +52,6 @@ - [[PR 990]](https://github.com/parthenon-hpc-lab/parthenon/pull/990) Partial refactor of HDF5 I/O code for readability/extendability - [[PR 982]](https://github.com/parthenon-hpc-lab/parthenon/pull/982) add some gut check testing for parthenon-VIBE -### Removed (removing behavior/API/varaibles/...) - ### Incompatibilities (i.e. breaking changes) - [[PR 987]](https://github.com/parthenon-hpc-lab/parthenon/pull/987) Change the API for what was IterativeTasks - [[PR 974]](https://github.com/parthenon-hpc-lab/parthenon/pull/974) Change GetParentPointer to always return T* diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d0d4ab3a496..907557f1df5e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ #========================================================================================= # Parthenon performance portable AMR framework -# Copyright(C) 2020-2023 The Parthenon collaboration +# Copyright(C) 2020-2024 The Parthenon collaboration # Licensed under the 3-clause BSD License, see LICENSE file for details #========================================================================================= # (C) (or copyright) 2020-2023. Triad National Security, LLC. All rights reserved. @@ -20,7 +20,7 @@ cmake_minimum_required(VERSION 3.16) # Imports machine-specific configuration include(cmake/MachineCfg.cmake) -project(parthenon VERSION 23.11 LANGUAGES C CXX) +project(parthenon VERSION 24.03 LANGUAGES C CXX) if (${CMAKE_VERSION} VERSION_GREATER_EQUAL 3.19.0) cmake_policy(SET CMP0110 NEW)