Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update changelogs/versions for 3.4.5 #983

Merged
merged 1 commit into from
Apr 24, 2024
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
16 changes: 16 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@
Darshan Release Change Log
--------------------------

Darshan-3.4.5
=============
* Added the ability for the Darshan runtime library to properly shutdown for
non-MPI applications that call `_exit()` directly
- This behavior has been commonly observed in the Python `multiprocessing`
package, which has traditionally prevented Darshan from properly
instrumenting applications that use it (e.g., the PyTorch DataLoader)
* Added optional integration with the LDMS data/metrics collection system,
allowing realtime analysis of Darshan instrumented I/O operations.
- For more details, see https://ovis-hpc.readthedocs.io/en/latest/ldms/ldms-streams.html#darshan
- Contributed by Sara Walton and the LDMS team
* Fixed bug to ensure Darshan includes the appropriate instrumentation wrapper
for `fscanf`/`__isoc99_fscanf`
* Fixed bug in HDF5 module causing any call to HDF5's `H5Pset_fapl_mpio()`
routine to fail

Darshan-3.4.4
=============
* Fixed bug leading to inconsistent heatmap record shapes when Darshan
Expand Down
4 changes: 4 additions & 0 deletions darshan-util/pydarshan/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
PyDarshan-3.4.5.0
=================
* Track Darshan 3.4.5 release, no PyDarshan changes

PyDarshan-3.4.4.0
=================
* Track Darshan 3.4.4 release, no PyDarshan changes
Expand Down
4 changes: 2 additions & 2 deletions darshan-util/pydarshan/darshan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
PyDarshan also provides a suite of analysis utilities.
"""

__version__ = '3.4.4.0'
__darshanutil_version__ = '3.4.4'
__version__ = '3.4.5.0'
__darshanutil_version__ = '3.4.5'

import logging
logger = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion darshan.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.4
3.4.5
Loading