From 3cf71af058f2df007dbaf25cf5b1fb845e5ad479 Mon Sep 17 00:00:00 2001 From: "Cosmin G. Petra" Date: Fri, 27 Sep 2024 13:29:28 -0700 Subject: [PATCH] changelog and bumper version --- CHANGELOG.md | 5 +++++ CMakeLists.txt | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abf21bf5..683e949f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log All notable changes to HiOp are documented in this file. +## Version 1.1.0: Checkpointing, advanced restarts, and misc fixes +* Checkpointing for quasi-Newton solver: new API for load and saving checkpoints, user options for rollover restarts, and scalable I/O via axom::sidre. +* New function for advanced warmstarts. +* Updated spack build with build cache. + ## Version 1.0.3: Moving limits and misc fixes * Update modules for CI tests on LLNL LC by @nychiang in #679 * Update cmake build system to require RAJA when GPU compute mode is used by @nychiang in #676 diff --git a/CMakeLists.txt b/CMakeLists.txt index f356cc3c..fc74a263 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ if (POLICY CMP0074) cmake_policy(SET CMP0074 NEW) endif () -project (hiop VERSION "1.0.3") +project (hiop VERSION "1.1") string(TIMESTAMP HIOP_RELEASE_DATE "%Y-%m-%d")