Skip to content

Commit c813bc0

Browse files
authored
Merge pull request #119 from gpaulsen/topic/master/v4.0.0_rel
Updating Website for v4.0.0 release.
2 parents 10f2ab6 + 0e1cbf3 commit c813bc0

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

index.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ function pr($name, $url, $comma) {
8787

8888
<?php
8989
# Lists are not mirrored - use an absolute URL
90+
news("Open MPI v4.0.0 released",
91+
"New feature release"
92+
"https://www.mail-archive.com/[email protected]/msg00119.html");
9093
news("Open MPI v3.1.3 released",
9194
"Bug fix release",
9295
"https://www.mail-archive.com/[email protected]/msg00118.html");

nightly/index.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818

1919
<p> <strong>Current release series</strong>
2020

21+
<li><a href="v4.0.x/"><strong>v4.0.x series</strong></a>: These are images from
22+
the stable v4.0.x series. <strong><font color="red">This is the recommended series
23+
for all users to download and use.</font></strong></li>
24+
2125
<li><a href="v3.1.x/"><strong>v3.1.x series</strong></a>: These are images from
2226
the stable v3.1.x series. <strong><font color="red">This is the recommended series
2327
for all users to download and use.</font></strong></li>

software/ompi/current/version.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# {version} is a variable-friendly transmorgification of the directory
2121
# name, meaning "replace . with _".
2222
#
23-
$dir = "v3.1";
23+
$dir = "v4.0";
2424

2525
# This part is automatic and should get the variables and stuff them
2626
# into $current_ver and $current_ver_dir.

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
// v4.0 release series
2929
series("v4.0 series", $series_start->format("Y-m-d"), $beyond_end_date, $data, $vpos, $graph);
3030
milestone("branch from master", "2018-07-18", $data, $vpos);
31-
milestone("v4.0.0rc1", "2018-09-14", $data, $vpos);
32-
milestone("v4.0.0rc2", "2018-09-22", $data, $vpos);
33-
milestone("v4.0.0rc3", "2018-09-27", $data, $vpos);
34-
milestone("v4.0.0rc4", "2018-10-05", $data, $vpos);
35-
milestone("v4.0.0rc5", "2018-10-22", $data, $vpos);
36-
#milestone("v4.0.0", "2018-09-17", $data, $vpos);
31+
#milestone("v4.0.0rc1", "2018-09-14", $data, $vpos);
32+
#milestone("v4.0.0rc2", "2018-09-22", $data, $vpos);
33+
#milestone("v4.0.0rc3", "2018-09-27", $data, $vpos);
34+
#milestone("v4.0.0rc4", "2018-10-05", $data, $vpos);
35+
#milestone("v4.0.0rc5", "2018-10-22", $data, $vpos);
36+
milestone("v4.0.0", "2018-11-12", $data, $vpos);
3737

3838
// Party on
3939
$graph->CreateSimple($data);

software/ompi/v4.0/version.inc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@ $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();
14+
$releases = array("4.0.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.0.0rc5", "4.0.0rc4", "4.0.0rc3", "4.0.0rc2", "4.0.0rc1");
18+
#$prereleases = array("4.0.0rc5", "4.0.0rc4", "4.0.0rc3", "4.0.0rc2", "4.0.0rc1");
19+
$prereleases = array();
1920

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

0 commit comments

Comments
 (0)