You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix test
* refactor NDIndex into blueprint::ndarray namespace
* cleanup of old namespace alias to avoid confusing with new object
* small changes
* warnings pass for a few int types
* warnings pass avoid pragma msgs
* resolve pessimizing-move (allow copy elison)
* warnings pass remove extra include
* update changelog
* docs updates
* warnings pass
* remove stale host configs and docs ref
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10-3Lines changed: 10 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,16 @@ Notable changes to Conduit are documented in this file.
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
and this project aspires to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
-
## Unreleased
7
+
## [0.8.7] - Released 2023-03-23
8
8
9
9
### Added
10
-
- Added public default and copy constructor to DataAccessor. Enables more flexibility with initializing DataAccessors from Nodes.
10
+
11
11
#### General
12
+
- Added public default and copy constructor to DataAccessor. Enables more flexibility with initializing DataAccessors from Nodes.
12
13
- Added Node.name(), Node.path(), Schema.name(), and Schema.path() to Python API.
13
14
- Added Node.as_index_t_ptr()
14
15
- Added `conduit::execution` namespace, which contains `for_all()` and `sort()` functions.
16
+
- Added DataType support to the Fortran API
15
17
16
18
#### Blueprint
17
19
- Added `conduit::blueprint::mpi::mesh::distribute`, which enables sending mesh domains to arbitrary MPI ranks (suppo
@@ -20,6 +22,9 @@ and this project aspires to adhere to [Semantic Versioning](https://semver.org/s
20
22
- Added `conduit::blueprint::examples::mesh::rz_cylinder` function that generates example 2D cylindrical (RZ) meshes.
21
23
22
24
### Fixed
25
+
#### General
26
+
- Fixed a logic issue undermining C++ type mapping when using CMake 3.26.
27
+
23
28
#### Blueprint
24
29
- Performance improvements to Mesh Blueprint topology metadata, used by `generate_points`, `generate_sides`, etc. The class was rewritten and the old one was moved to `conduit::blueprint::mesh::utils::reference::TopologyMetadata`. The new implementation is faster, often about 6-20x depending on options.
25
30
- Performance improvements to O2M Iterators.
@@ -763,7 +768,8 @@ and this project aspires to adhere to [Semantic Versioning](https://semver.org/s
0 commit comments