Skip to content

Commit 92bf081

Browse files
committed
Merge branch 'develop'
2 parents 115a10f + e272a10 commit 92bf081

8 files changed

Lines changed: 18 additions & 18 deletions

File tree

UNLICENSE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## NOTICE:
2-
CMS Version 5.3. The CMS code is supplied by the U.S. Army Corps of Engineers, Engineer Research and Development Center (USACE-ERDC). Some portions of this software were written by employees of ERDC-CHL, a laboratory of the U.S. Army Corps of Engineers, and are not under copyright. Other portions are copyright their creators and licensed under licenses listed in the included documentation. USACE-ERDC makes no guarantees about the results, or appropriateness of outputs, obtained from CMS.
2+
CMS Version 5.4. The CMS code is supplied by the U.S. Army Corps of Engineers, Engineer Research and Development Center (USACE-ERDC). Some portions of this software were written by employees of ERDC-CHL, a laboratory of the U.S. Army Corps of Engineers, and are not under copyright. Other portions are copyright their creators and licensed under licenses listed in the included documentation. USACE-ERDC makes no guarantees about the results, or appropriateness of outputs, obtained from CMS.
33

44
## LIST OF CONDITIONS:
55
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
@@ -16,7 +16,7 @@ This version of CMS uses the following libraries and source code:
1616
### XMDF Binary Library [Aquaveo]
1717
This library allows for input/output using platform-independent binary files to save disk space and for better communication with the Surface-water Modeling System GUI.
1818

19-
Copyright 2023, Aquaveo, LLC
19+
Copyright 2024, Aquaveo, LLC
2020

2121
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2222

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def setup(app):
6767
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
6868

6969
project = u'CMS'
70-
copyright = u'2023, Coastal Inlets Research Program'
70+
copyright = u'2024, Coastal Inlets Research Program'
7171
author = 'Coastal Inlets Research Program'
7272

7373
# The short X.Y version.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ exclude = [
88

99
[project]
1010
name = "cms2d"
11-
version = "5.3"
11+
version = "5.4"
1212
authors = [
1313
{ name = "Mitchell Brown", email = "mitchell.e.brown@usace.army.mil" },
1414
]

testing/builder/build-config.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"solution_path" :"Intel_vs2019/CMS2D_v5.3.sln",
2+
"solution_path" :"Intel_vs2019/CMS2D_v5.4.sln",
33
"build_config_names" : ["Release"],
4-
"project_name" : "CMS2D_v5.3",
5-
"exe_file_names" : ["CMS2D_v5.3.exe"],
4+
"project_name" : "CMS2D_v5.4",
5+
"exe_file_names" : ["CMS2D_v5.4.exe"],
66
"dev_env" : "\"C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/Common7/IDE/devenv.com\"",
77
"dll_path" : "c:/Program Files (x86)/Intel/oneAPI/compiler/2021.4.0/windows/redist/intel64_win/compiler"
88
}

testing/builder/builder.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
# 4. Local modules
1313

14-
__copyright__ = "(C) Copyright Aquaveo 2020"
14+
__copyright__ = "(C) Copyright Aquaveo 2024"
1515
__license__ = "All rights reserved"
1616

1717

@@ -52,10 +52,10 @@ def build(solution_path=None,
5252
r"""Builds the project.
5353
5454
Args:
55-
solution_path: Example: '..\Intel_vs2022\CMS2D_V5.3.sln'
55+
solution_path: Example: '..\Intel_vs2022\CMS2D_V5.4.sln'
5656
build_config_names: Example: ('Release')
57-
project_name: Example: 'CMS2D_V5.3'
58-
exe_file_names: Example: ('CMS2D_v5.3.exe')
57+
project_name: Example: 'CMS2D_V5.4'
58+
exe_file_names: Example: ('CMS2D_v5.4.exe')
5959
dev_env: Example: "C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\devenv.com"
6060
do_build: Example: 0 or 1 (0 to skip build)
6161
do_test: Example: 0 or 1 (0 to skip test)

testing/builder/h5_file_to_text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
# 4. Local modules
1515

16-
__copyright__ = "(C) Copyright Aquaveo 2020"
16+
__copyright__ = "(C) Copyright Aquaveo 2024"
1717
__license__ = "All rights reserved"
1818

1919

testing/builder/process_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
# 4. Local modules
1414

15-
__copyright__ = "(C) Copyright Aquaveo 2020"
15+
__copyright__ = "(C) Copyright Aquaveo 2024"
1616
__license__ = "All rights reserved"
1717

1818
# index for tuple in self.running_processes

testing/builder/test_cms.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ def main(vs_solution_path, dll_path):
8080
# dll_files = [str(f.absolute()) for f in Path(search_path).rglob('libiomp5md.dll')]
8181
# print(dll_files)
8282

83-
path_to_cms = os.path.join(repo_path, vs_solution_path, 'x64/Release/CMS2d_v5.3.exe')
83+
path_to_cms = os.path.join(repo_path, vs_solution_path, 'x64/Release/CMS2d_v5.4.exe')
8484
if not os.path.isfile(path_to_cms):
85-
print(f'ERROR: CMS2d_v5.3.exe not found at {path_to_cms}')
85+
print(f'ERROR: CMS2d_v5.4.exe not found at {path_to_cms}')
8686
return 1
87-
# shutil.copyfile(path_to_cms, os.path.join(test_path, './CMS2D_v5.3.exe'))
87+
# shutil.copyfile(path_to_cms, os.path.join(test_path, './CMS2D_v5.4.exe'))
8888
process_runner.ProcessRunner.cms_exe = path_to_cms
8989
# Copy 'libiomp5md.dll' and executable to tests directory
9090
# shutil.copyfile(os.path.join(dll_path, 'libiomp5md.dll'),
@@ -94,8 +94,8 @@ def main(vs_solution_path, dll_path):
9494
runner.run_concurrent_processes(files)
9595
# test CMS outputs
9696
return_code = _check_outputs(files)
97-
# if os.path.isfile(os.path.join(test_path, 'CMS2d_v5.3.exe')):
98-
# os.remove(os.path.join(test_path, 'CMS2d_v5.3.exe'))
97+
# if os.path.isfile(os.path.join(test_path, 'CMS2d_v5.4.exe')):
98+
# os.remove(os.path.join(test_path, 'CMS2d_v5.4.exe'))
9999
# os.remove(os.path.join(test_path, 'libiomp5md.dll'))
100100

101101
return return_code

0 commit comments

Comments
 (0)