From 16e4d7c0c48dc53fb204cea7e03509a2e0828f97 Mon Sep 17 00:00:00 2001 From: Nick Featherstone Date: Wed, 19 Jun 2024 18:00:43 -0600 Subject: [PATCH 01/10] Added PR 510 and 523 to CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2735712b..5983a6fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ### Changed ### Fixed +- Rayleigh no longer attempts to update the record count and close a diagnostics file (e.g., G_Avgs) that failed to open correctly. \[Nick Featherstone; 6-19-2024; [#510](https://github.com/geodynamics/Rayleigh/pull/510) , [#523](https://github.com/geodynamics/Rayleigh/pull/523) \] + ## [1.2.0] - 5-29-2024 ### Added From 67c7fb52160b9116223157a31936e4dd464754d7 Mon Sep 17 00:00:00 2001 From: Nick Featherstone Date: Wed, 19 Jun 2024 18:07:46 -0600 Subject: [PATCH 02/10] Added PR 528 to changelog.md. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5983a6fe..b81f00bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Rayleigh no longer attempts to update the record count and close a diagnostics file (e.g., G_Avgs) that failed to open correctly. \[Nick Featherstone; 6-19-2024; [#510](https://github.com/geodynamics/Rayleigh/pull/510) , [#523](https://github.com/geodynamics/Rayleigh/pull/523) \] +- Before an existing checkpoint file is overwritten, its file size is first set to zero. This fixes a bug that caused Rayleigh to generate checkpoint files that were too large in some instances due to resolution changes \[Nick Featherstone; 6-19-2024; [#528](https://github.com/geodynamics/Rayleigh/pull/528) \] + ## [1.2.0] - 5-29-2024 ### Added From b6fadd72f54b56155138c421fcd5b887ebac4740 Mon Sep 17 00:00:00 2001 From: Nick Featherstone Date: Wed, 19 Jun 2024 18:12:23 -0600 Subject: [PATCH 03/10] Added PR 527 to changelog.md. --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b81f00bb..16a90ac1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,9 +12,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ### Changed ### Fixed -- Rayleigh no longer attempts to update the record count and close a diagnostics file (e.g., G_Avgs) that failed to open correctly. \[Nick Featherstone; 6-19-2024; [#510](https://github.com/geodynamics/Rayleigh/pull/510) , [#523](https://github.com/geodynamics/Rayleigh/pull/523) \] +- Rayleigh no longer attempts to update the record count and close a diagnostics file (e.g., G_Avgs) that failed to open correctly. \[Nick Featherstone; 6-18-2024; [#510](https://github.com/geodynamics/Rayleigh/pull/510) , [#523](https://github.com/geodynamics/Rayleigh/pull/523) \] -- Before an existing checkpoint file is overwritten, its file size is first set to zero. This fixes a bug that caused Rayleigh to generate checkpoint files that were too large in some instances due to resolution changes \[Nick Featherstone; 6-19-2024; [#528](https://github.com/geodynamics/Rayleigh/pull/528) \] +- Fixed a bug that was causing documentation build to become progressively slower for subsequent builds due to recursive inclusion of the doc\build directory \[Philipp Edelmann; 6-17-2024; [#527](https://github.com/geodynamics/Rayleigh/pull/527)\] + +- Before an existing checkpoint file is overwritten, its file size is first set to zero. This fixes a bug that caused Rayleigh to generate checkpoint files that were too large in some instances due to resolution changes \[Nick Featherstone; 6-18-2024; [#528](https://github.com/geodynamics/Rayleigh/pull/528) \] ## [1.2.0] - 5-29-2024 From 10d8f8592edcf39aba5a609a6e9b7f0009542512 Mon Sep 17 00:00:00 2001 From: Nick Featherstone Date: Wed, 19 Jun 2024 18:16:31 -0600 Subject: [PATCH 04/10] Added PR 32 to changelog.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16a90ac1..931ee2d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Before an existing checkpoint file is overwritten, its file size is first set to zero. This fixes a bug that caused Rayleigh to generate checkpoint files that were too large in some instances due to resolution changes \[Nick Featherstone; 6-18-2024; [#528](https://github.com/geodynamics/Rayleigh/pull/528) \] +- The standard c++ libraries are no longer linked when compiling Rayleigh; \[Brandon Lazard; 6-19-2024; [#532](https://github.com/geodynamics/Rayleigh/pull/532)\] + ## [1.2.0] - 5-29-2024 ### Added From ad216ba09802296642f4ae103065f493b29eb3c6 Mon Sep 17 00:00:00 2001 From: Nick Featherstone Date: Wed, 19 Jun 2024 18:26:15 -0600 Subject: [PATCH 05/10] Added PR 534 --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 931ee2d3..0b37cc26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] ### Added ### Changed + +- The logic in the configure script that determines the library-link flags for compilation on different systems has been simplified. \[Rene Gassmoeller; 6-19-2024; [#534](https://github.com/geodynamics/Rayleigh/pull/534)\] + ### Fixed - Rayleigh no longer attempts to update the record count and close a diagnostics file (e.g., G_Avgs) that failed to open correctly. \[Nick Featherstone; 6-18-2024; [#510](https://github.com/geodynamics/Rayleigh/pull/510) , [#523](https://github.com/geodynamics/Rayleigh/pull/523) \] @@ -20,6 +23,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - The standard c++ libraries are no longer linked when compiling Rayleigh; \[Brandon Lazard; 6-19-2024; [#532](https://github.com/geodynamics/Rayleigh/pull/532)\] + + ## [1.2.0] - 5-29-2024 ### Added From 043fd5dc868455c2861f189d4eaa3a78177e2f97 Mon Sep 17 00:00:00 2001 From: Nick Featherstone Date: Wed, 19 Jun 2024 18:30:27 -0600 Subject: [PATCH 06/10] Added PR 530 --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b37cc26..9baf38cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Before an existing checkpoint file is overwritten, its file size is first set to zero. This fixes a bug that caused Rayleigh to generate checkpoint files that were too large in some instances due to resolution changes \[Nick Featherstone; 6-18-2024; [#528](https://github.com/geodynamics/Rayleigh/pull/528) \] +- The docker container build script now accounts for the new requirement that container names are all lower case. \[Rene Gassmoeller; 6-19-2024; [#530](https://github.com/geodynamics/Rayleigh/pull/530)\] + - The standard c++ libraries are no longer linked when compiling Rayleigh; \[Brandon Lazard; 6-19-2024; [#532](https://github.com/geodynamics/Rayleigh/pull/532)\] From 2c72b0fa8f746160283cb7d3ff6801cba669cf4d Mon Sep 17 00:00:00 2001 From: Nick Featherstone Date: Thu, 20 Jun 2024 09:45:41 -0600 Subject: [PATCH 07/10] Added PR 402. --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9baf38cb..f88ea1b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] ### Added + +- A docker image for Stampede2 (TACC) has been added to the repository. \[Rene Gassmoeller; 6-20-2024; [#402](https://github.com/geodynamics/Rayleigh/pull/402)\] + ### Changed - The logic in the configure script that determines the library-link flags for compilation on different systems has been simplified. \[Rene Gassmoeller; 6-19-2024; [#534](https://github.com/geodynamics/Rayleigh/pull/534)\] From dee1c413978861c852d49505120a20710cdce5e2 Mon Sep 17 00:00:00 2001 From: Nick Featherstone Date: Thu, 20 Jun 2024 09:53:51 -0600 Subject: [PATCH 08/10] Added PR 533. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f88ea1b0..a35f53e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - A docker image for Stampede2 (TACC) has been added to the repository. \[Rene Gassmoeller; 6-20-2024; [#402](https://github.com/geodynamics/Rayleigh/pull/402)\] +- The streamfunction equations solved by Rayleigh have been added to the documentation. \[Tami Rogers; 6-20-2024; [#533](https://github.com/geodynamics/Rayleigh/pull/533)\] + ### Changed - The logic in the configure script that determines the library-link flags for compilation on different systems has been simplified. \[Rene Gassmoeller; 6-19-2024; [#534](https://github.com/geodynamics/Rayleigh/pull/534)\] From 8c1f3a5003430df9b069d027137751655f6731c6 Mon Sep 17 00:00:00 2001 From: Nick Featherstone Date: Thu, 20 Jun 2024 10:02:25 -0600 Subject: [PATCH 09/10] Added PR 531. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a35f53e8..7904364b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - A docker image for Stampede2 (TACC) has been added to the repository. \[Rene Gassmoeller; 6-20-2024; [#402](https://github.com/geodynamics/Rayleigh/pull/402)\] +- An image gallery has been added to the documentation. \[Brandon Lazard; 6-20-2024; [#531](https://github.com/geodynamics/Rayleigh/pull/531)\] + - The streamfunction equations solved by Rayleigh have been added to the documentation. \[Tami Rogers; 6-20-2024; [#533](https://github.com/geodynamics/Rayleigh/pull/533)\] ### Changed From 8e3f965b2f7904153bff2640bf00a8d2012a91e0 Mon Sep 17 00:00:00 2001 From: Nick Featherstone Date: Thu, 20 Jun 2024 11:01:49 -0600 Subject: [PATCH 10/10] Changed Stampede2 to "Stampede3 and Frontera" --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7904364b..bbf99c10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] ### Added -- A docker image for Stampede2 (TACC) has been added to the repository. \[Rene Gassmoeller; 6-20-2024; [#402](https://github.com/geodynamics/Rayleigh/pull/402)\] +- A docker image for Stampede3 and Frontera (TACC) has been added to the repository. \[Rene Gassmoeller; 6-20-2024; [#402](https://github.com/geodynamics/Rayleigh/pull/402)\] - An image gallery has been added to the documentation. \[Brandon Lazard; 6-20-2024; [#531](https://github.com/geodynamics/Rayleigh/pull/531)\]