Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ include(CMakeDependentOption)

# Set version number
set(RAJA_VERSION_MAJOR 2025)
set(RAJA_VERSION_MINOR 09)
set(RAJA_VERSION_PATCHLEVEL 1)
set(RAJA_VERSION_MINOR 12)
set(RAJA_VERSION_PATCHLEVEL 0)

if (RAJA_LOADED AND (NOT RAJA_LOADED STREQUAL "${RAJA_VERSION_MAJOR}.${RAJA_VERSION_MINOR}.${RAJA_VERSION_PATCHLEVEL}"))
message(FATAL_ERROR "You are mixing RAJA versions. Loaded is ${RAJA_LOADED}, expected ${RAJA_VERSION_MAJOR}.${RAJA_VERSION_MINOR}.${RAJA_VERSION_PATCHLEVEL}")
Expand Down
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
*******************************************************************************

RAJA: ................................, version 2025.09.0
RAJA: ................................, version 2025.12.0

Copyright (c) 2016-25, Lawrence Livermore National Security, LLC.
Produced at the Lawrence Livermore National Laboratory.
Expand Down
25 changes: 25 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,31 @@ Notable changes include:
* Bug fixes/improvements:


Version 2025.12.0 -- Release date 2025-12-19
============================================

This release contains mostly improvements to code robustness and testing,
including evolving internal code implementations to use C++17.

Notable changes include:

* New features / API changes:

* Build changes/improvements:
* Update Camp submodule to v2025.12.0 release.
* Improve CMake support for configuring with Caliper and fix issue reported
by a user.
* Bump minimum CMake version required to 3.24.

* Bug fixes/improvements:
* Fix compilation failue when a downstream library or applications is
built without OpenMP enabled when RAJA was built with OpenMP enabled.
There may still be some corner cases that violate C++ ODR that we have not
resolved and are not being exposed by users.
* Various internal code cleanups, simplifications, and improvements using
C++17 features, with an eye toward C++20.


Version 2025.09.1 -- Release date 2025-10-01
============================================

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@
# built documents.
#
# The short X.Y version.
version = u'2025.09'
version = u'2025.12'
# The full version, including alpha/beta/rc tags.
release = u'2025.09.1'
release = u'2025.12.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down