Skip to content
Closed
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
30 changes: 20 additions & 10 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,29 @@ The Axom project release numbers follow [Semantic Versioning](http://semver.org/
## [Unreleased] - Release date yyyy-mm-dd

### Added
- Lumberjack: Adds optional virtual function `isMessageCandidateForCombiner()` to the Combiner class that checks if a single given Message is a candidate for the Combiner (returns true by default).
- Sidre: Added Conduit Node to the Python interface.

### Removed

### Deprecated

### Changed

### Fixed

## [Version 0.14.0] - Release date 2026-03-31

### Added
- Lumberjack: Adds optional virtual function `isMessageCandidateForCombiner()` to the `Combiner`
class that checks if a single given Message is a candidate for the Combiner (returns true by default).
- Sidre: Added Conduit `Node` to the Python interface.
- Adds yapf as a Python formatter.
- Quest: Adds fast GWN methods for STL/Triangulated STEP input and linearized NURBS Curve input which leverage error-controlled approximation and a spatial index (BVH).
- Quest: Adds fast GWN methods for STL/Triangulated STEP input and linearized NURBS Curve input which
leverage error-controlled approximation and a spatial index (BVH).

### Changed
- Primal: Axom's polygon clipping was modified to handle some corner cases.
- Mir: The `EquiZAlgorithm` class was improved so it performs better with OpenMP.
- Bump: Several Bump algorithms were improved so they perform better with OpenMP.
- Mir: The `EquiZAlgorithm was improved so it performs better with OpenMP.
- Many algorithms in Bump and Mir have been enhanced with `setAllocatorID()` methods to permit use of custom allocators.
- Uberenv's spack updated to v1.1.1
- `radiuss-spack-configs` submodule removed.
Expand All @@ -40,11 +54,6 @@ The Axom project release numbers follow [Semantic Versioning](http://semver.org/
which are not needed in all use cases.
- Quest: A compilation problem with `-DAXOM_NO_INT64_T=1` was fixed.

### Removed

### Deprecated


## [Version 0.13.0] - Release date 2026-02-05

### Added
Expand Down Expand Up @@ -1411,7 +1420,8 @@ fractions for the associated materials must be supplied before shaping.
- Use this section in case of vulnerabilities


[Unreleased]: https://github.com/LLNL/axom/compare/v0.13.0...develop
[Unreleased]: https://github.com/LLNL/axom/compare/v0.14.0...develop
[Version 0.14.0]: https://github.com/LLNL/axom/compare/v0.13.0...v0.14.0
[Version 0.13.0]: https://github.com/LLNL/axom/compare/v0.12.0...v0.13.0
[Version 0.12.0]: https://github.com/LLNL/axom/compare/v0.11.0...v0.12.0
[Version 0.11.0]: https://github.com/LLNL/axom/compare/v0.10.1...v0.11.0
Expand Down
2 changes: 1 addition & 1 deletion src/cmake/AxomVersion.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# otherwise, the hard-coded values will go in to the config.
#------------------------------------------------------------------------------
set(AXOM_VERSION_MAJOR 0)
set(AXOM_VERSION_MINOR 13)
set(AXOM_VERSION_MINOR 14)
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be 0.14. or 0.13.1 ?
Either way works for me..

set(AXOM_VERSION_PATCH 0)
string(CONCAT AXOM_VERSION_FULL
"v${AXOM_VERSION_MAJOR}"
Expand Down
2 changes: 1 addition & 1 deletion src/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Component Level Dependencies
Axom has the following inter-component dependencies:

- Core has no dependencies and the other components depend on Core
- Bump depends on Slic and Primal.
- Bump depends on Sidre, Slic, Spin, and Primal.
- Slic optionally depends on Lumberjack
- Slam, Spin, Primal, Mint, Quest, and Sidre depend on Slic
- Mint depends on Slam, and optionally Sidre
Expand Down
Loading