Skip to content

Commit e447b31

Browse files
committed
Post OMPI 4.1.8 release
Signed-off-by: Brian Barrett <[email protected]>
1 parent 48d4238 commit e447b31

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

index.php

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,19 @@ function pr($name, $url, $comma) {
8686
<td valign=top>
8787

8888
<?php
89+
news("Open MPI v4.1.7 released",
90+
"Bug fix release.<br><br>
91+
<b>NOTE</b>: Open MPI 4.1.7 incorrectly changed the shared library
92+
versioning information for the OpenSHMEM interface, potentially
93+
causing link errors when updating from prior releases of Open MPI
94+
to 4.1.7. This release resets the shared library version number
95+
history to allow updates from Open MPI 4.1.6 and prior. Customers
96+
who updated to 4.1.7 and relinked their OpenSHMEM applications will
97+
have to relink their application again.",
98+
"https://www.mail-archive.com/[email protected]/msg00171.html");
8999
news("Open MPI v5.0.6 released",
90100
"Bug fix release",
91101
"");
92-
news("Open MPI v4.1.7 released",
93-
"Bug fix release",
94-
"https://www.mail-archive.com/[email protected]/msg00171.html");
95102
news("hwloc 2.11.2",
96103
"Stable release",
97104
"https://www.mail-archive.com/[email protected]/msg00169.html");

software/ompi/v4.1/index.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,19 @@
3535
?>/software/ompi/versions/timeline.php">version timeline</a> for
3636
information on the chronology of Open MPI releases.</p>
3737

38+
<p>
39+
<B>NOTE</B>: Open MPI 4.1.7 incorrectly changed the shared library
40+
versioning information for the OpenSHMEM interface, potentially
41+
causing link errors when updating from prior releases of Open MPI
42+
to 4.1.7. Open MPI 4.1.8 resets the shared library version number
43+
history to allow updates from Open MPI 4.1.6 and prior. Customers
44+
who updated to 4.1.7 and relinked their OpenSHMEM applications will
45+
have to relink their application again when updating to Open MPI
46+
4.1.8 or later.
3847
<p>
3948
<div align="center">
4049

50+
4151
<?php
4252
print_release_section("openmpi", "open-mpi-release", $s3_prefix, $download_prefix,
4353
$releases, $prereleases, $cygwin_note);

software/ompi/v4.1/timeline-graph.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@
5353
milestone("v4.1.6", "2023-09-30", $data, $vpos);
5454
#milestone("v4.1.7rc1", "2024-10-22", $data, $vpos);
5555
milestone("v4.1.7", "2024-10-31", $data, $vpos);
56-
milestone("v4.1.8rc1", 2025-01-24", $data, $vpos);
56+
#milestone("v4.1.8rc1", 2025-01-24", $data, $vpos);
57+
milestone("v4.1.8", 2025-02-04", $data, $vpos);
5758

5859
// Party on
5960
$graph->CreateSimple($data);

software/ompi/v4.1/version.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ $download_prefix="https://download.open-mpi.org/release/open-mpi/v" . $release_s
1111
$s3_prefix = "release/open-mpi/v" . $release_series . "/";
1212

1313
/* releases must be ordered newest to oldest */
14-
$releases = array("4.1.7", "4.1.6", "4.1.5", "4.1.4", "4.1.3", "4.1.2", "4.1.1", "4.1.0");
14+
$releases = array("4.1.8", "4.1.7", "4.1.6", "4.1.5", "4.1.4", "4.1.3", "4.1.2", "4.1.1", "4.1.0");
1515
/* prereleases must be ordered newest to oldest. All prereleases
1616
will be shown, so make an empty array when the official release
1717
is added to releases above */
18-
$prereleases = array("4.1.8rc1");
18+
$prereleases = array();
1919

2020
/* set to true if we should add a cygwin note */
2121
$cygwin_note = 0;

0 commit comments

Comments
 (0)