@@ -19,6 +19,31 @@ The Axom project release numbers follow [Semantic Versioning](http://semver.org/
1919
2020## [ Unreleased] - Release date yyyy-mm-dd
2121
22+ ## [ Version 0.6.1] - Release date 2021-11-17
23+
24+ ### Added
25+ - Added a config variable, ` AXOM_DEBUG_DEFINE ` to control whether the ` AXOM_DEBUG ` compiler define is enabled.
26+ By ` DEFAULT ` , it is enabled for ` Debug ` and ` RelWithDebInfo ` configurations, but this can be overriden
27+ by setting ` AXOM_DEBUG_DEFINE ` to ` ON ` or ` OFF ` .
28+ - ` axom::Array ` is now GPU-compatible, in particular via a memory space template parameter and via
29+ extensions to ` axom::ArrayView ` that allow for copying into kernels and transfers between memory spaces.
30+ - Adds some utility arithmetic operators for adding and subracting ` primal::Point ` s and ` primal::Vector ` s
31+
32+ ### Changed
33+ - Renamed ` AXOM_NOT_USED ` macro to ` AXOM_UNUSED_PARAM ` for better consistency with other Axom macros
34+ - Added ` explicit ` to ` axom::Inlet::InletVector ` constructors and added a constructor that accepts a ` double* `
35+ - ` AXOM_ENABLE_MFEM_SIDRE_DATACOLLECTION ` configuration option is now ` ON ` by default (rather than ` OFF ` ).
36+ This option should be disabled if ` mfem ` was configured with ` MFEM_USE_SIDRE ` .
37+
38+ ### Fixed
39+ - The ` AXOM_DEBUG ` compiler define is now properly exported via the ` axom ` CMake target when it is enabled
40+ - Added tolerance parameter ` EPS ` to ` primal::closest_point() ` operator. This effectively snaps
41+ closest points to the triangle boundaries vertices and edges when they are within ` EPS ` ,
42+ improving consistency when, e.g., querying multiple triangles from the same mesh.
43+ - Fixed regression in ` SignedDistance ` queries for query points closest to edges or vertices
44+ of the input triangle mesh
45+
46+
2247## [ Version 0.6.0] - Release date 2021-11-04
2348
2449### Added
@@ -628,7 +653,8 @@ The Axom project release numbers follow [Semantic Versioning](http://semver.org/
628653### Security
629654- Use this section in case of vulnerabilities
630655
631- [ Unreleased ] : https://github.com/LLNL/axom/compare/v0.6.0...develop
656+ [ Unreleased ] : https://github.com/LLNL/axom/compare/v0.6.1...develop
657+ [ Version 0.6.1 ] : https://github.com/LLNL/axom/compare/v0.6.0...v0.6.1
632658[ Version 0.6.0 ] : https://github.com/LLNL/axom/compare/v0.5.0...v0.6.0
633659[ Version 0.5.0 ] : https://github.com/LLNL/axom/compare/v0.4.0...v0.5.0
634660[ Version 0.4.0 ] : https://github.com/LLNL/axom/compare/v0.3.3...v0.4.0
0 commit comments