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.6 #1011

Merged
merged 6 commits into from
Oct 17, 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
4 changes: 2 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ jobs:
- uses: actions/checkout@v2

- name: Build wheels
uses: pypa/cibuildwheel@v2.17.0
uses: pypa/cibuildwheel@v2.19.2
with:
package-dir: ./darshan-util/pydarshan

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
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.6
=============
* Added enhancements to Darshan's Lustre instrumentation module to capture
extensive details on the Lustre stripe components constituting a file (e.g.,
in a progressive file layout)
- File records now composed of potentially multiple Lustre component counter
sets (e.g., LUSTRE_COMP1_*, LUSTRE_COMP2_*, etc.)
- STRIPE_OFFSET, OSTS, and MDTS counters are no longer provided
- STRIPE_WIDTH is now referred to as STRIPE_COUNT to match Lustre terminology
* Fixed bugs in Darshan's log compression/decompression routines that are
triggered when using the new zlib-ng software package
- darshan-runtime bug fix to correct problematic log compression strategy
- darshan-util bug fix to correct logs already generated with this issue
* Fixed bug leading to hangs when passing in unproperly formatted Darshan
runtime configuration settings

Darshan-3.4.5
=============
* Added the ability for the Darshan runtime library to properly shutdown for
Expand Down
2 changes: 1 addition & 1 deletion darshan-util/doc/darshan-util.txt
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ execution time.
| LUSTRE_COMP*_EXT_END | ending file extent for this file layout component (-1 means EOF)
| LUSTRE_COMP*_MIRROR_ID | mirror ID for this file layout component, if mirrors are enabled
| LUSTRE_COMP*_POOL_NAME | Lustre OST pool used for this file layout component
| LUSTRE_COMP*_OST_ID_* | indices of OSTs over which this file layout component is striped
| LUSTRE_COMP*\_OST_ID_* | indices of OSTs over which this file layout component is striped
|====

.APXC module header record (if enabled, for Cray XC systems)
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.6.0
=================
* Track Darshan 3.4.6 release, no PyDarshan changes

PyDarshan-3.4.5.0
=================
* Track Darshan 3.4.5 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.5.0'
__darshanutil_version__ = '3.4.5'
__version__ = '3.4.6.0'
__darshanutil_version__ = '3.4.6'

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.5
3.4.6
Loading