Skip to content

Commit 1190d20

Browse files
author
shanedsnyder
authored
Merge pull request #1011 from darshan-hpc/snyder/3.4.6-release-prep
update changelogs/versions for 3.4.6
2 parents 1a58868 + 907f052 commit 1190d20

File tree

6 files changed

+26
-6
lines changed

6 files changed

+26
-6
lines changed

.github/workflows/build_wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ jobs:
5353
- uses: actions/checkout@v2
5454

5555
- name: Build wheels
56-
uses: pypa/cibuildwheel@v2.17.0
56+
uses: pypa/cibuildwheel@v2.19.2
5757
with:
5858
package-dir: ./darshan-util/pydarshan
5959

60-
- uses: actions/upload-artifact@v2
60+
- uses: actions/upload-artifact@v3
6161
with:
6262
path: ./wheelhouse/*.whl

ChangeLog

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22
Darshan Release Change Log
33
--------------------------
44

5+
Darshan-3.4.6
6+
=============
7+
* Added enhancements to Darshan's Lustre instrumentation module to capture
8+
extensive details on the Lustre stripe components constituting a file (e.g.,
9+
in a progressive file layout)
10+
- File records now composed of potentially multiple Lustre component counter
11+
sets (e.g., LUSTRE_COMP1_*, LUSTRE_COMP2_*, etc.)
12+
- STRIPE_OFFSET, OSTS, and MDTS counters are no longer provided
13+
- STRIPE_WIDTH is now referred to as STRIPE_COUNT to match Lustre terminology
14+
* Fixed bugs in Darshan's log compression/decompression routines that are
15+
triggered when using the new zlib-ng software package
16+
- darshan-runtime bug fix to correct problematic log compression strategy
17+
- darshan-util bug fix to correct logs already generated with this issue
18+
* Fixed bug leading to hangs when passing in unproperly formatted Darshan
19+
runtime configuration settings
20+
521
Darshan-3.4.5
622
=============
723
* Added the ability for the Darshan runtime library to properly shutdown for

darshan-util/doc/darshan-util.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ execution time.
519519
| LUSTRE_COMP*_EXT_END | ending file extent for this file layout component (-1 means EOF)
520520
| LUSTRE_COMP*_MIRROR_ID | mirror ID for this file layout component, if mirrors are enabled
521521
| LUSTRE_COMP*_POOL_NAME | Lustre OST pool used for this file layout component
522-
| LUSTRE_COMP*_OST_ID_* | indices of OSTs over which this file layout component is striped
522+
| LUSTRE_COMP*\_OST_ID_* | indices of OSTs over which this file layout component is striped
523523
|====
524524

525525
.APXC module header record (if enabled, for Cray XC systems)

darshan-util/pydarshan/CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
PyDarshan-3.4.6.0
2+
=================
3+
* Track Darshan 3.4.6 release, no PyDarshan changes
4+
15
PyDarshan-3.4.5.0
26
=================
37
* Track Darshan 3.4.5 release, no PyDarshan changes

darshan-util/pydarshan/darshan/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
PyDarshan also provides a suite of analysis utilities.
44
"""
55

6-
__version__ = '3.4.5.0'
7-
__darshanutil_version__ = '3.4.5'
6+
__version__ = '3.4.6.0'
7+
__darshanutil_version__ = '3.4.6'
88

99
import logging
1010
logger = logging.getLogger(__name__)

darshan.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.5
1+
3.4.6

0 commit comments

Comments
 (0)