Skip to content

Commit

Permalink
update copyright dates and version numbers (#21)
Browse files Browse the repository at this point in the history
* update copyright dates and version numbers

* fix pre-commit warning
  • Loading branch information
phlptp authored Jan 2, 2024
1 parent c4fa613 commit f8fab15
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# ~~~
# Copyright (c) 2017-2022, Battelle Memorial Institute; Lawrence Livermore
# Copyright (c) 2017-2024, Battelle Memorial Institute; Lawrence Livermore
# National Security, LLC; Alliance for Sustainable Energy, LLC.
# See the top-level NOTICE for additional details.
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
# ~~~

cmake_minimum_required(VERSION 3.11...3.24)
cmake_minimum_required(VERSION 3.11...3.28)

project(
GMLC_UTILITIES
LANGUAGES CXX
VERSION 0.5.0
VERSION 0.6.0
)

# -----------------------------------------------------------------------------
# GMLC UTILITIES library Version number
# -----------------------------------------------------------------------------
set(GMLC_UTILITIES_VERSION_BUILD)
set(GMLC_UTILITIES_DATE "2022-10-25")
set(GMLC_UTILITIES_DATE "2024-01-02")

set(GMLC_UTILITIES_VERSION_STRING "${GMLC_UTILITIES_VERSION} (${GMLC_UTILITIES_DATE})")

Expand Down
2 changes: 1 addition & 1 deletion gmlc/utilities/mapOps.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2017-2022,
Copyright (c) 2017-2024,
Battelle Memorial Institute; Lawrence Livermore National Security, LLC; Alliance
for Sustainable Energy, LLC. See the top-level NOTICE for additional details.
All rights reserved. SPDX-License-Identifier: BSD-3-Clause
Expand Down
2 changes: 1 addition & 1 deletion gmlc/utilities/stringConversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/

/*
Copyright (c) 2017-2022,
Copyright (c) 2017-2024,
Battelle Memorial Institute; Lawrence Livermore National Security, LLC; Alliance
for Sustainable Energy, LLC. See the top-level NOTICE for additional details.
All rights reserved. SPDX-License-Identifier: BSD-3-Clause
Expand Down
2 changes: 1 addition & 1 deletion gmlc/utilities/stringOps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/

/*
Copyright (c) 2017-2022,
Copyright (c) 2017-2024,
Battelle Memorial Institute; Lawrence Livermore National Security, LLC; Alliance
for Sustainable Energy, LLC. See the top-level NOTICE for additional details.
All rights reserved. SPDX-License-Identifier: BSD-3-Clause
Expand Down
2 changes: 1 addition & 1 deletion gmlc/utilities/stringOps.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/

/*
Copyright (c) 2017-2022,
Copyright (c) 2017-2024,
Battelle Memorial Institute; Lawrence Livermore National Security, LLC; Alliance
for Sustainable Energy, LLC. See the top-level NOTICE for additional details.
All rights reserved. SPDX-License-Identifier: BSD-3-Clause
Expand Down
2 changes: 1 addition & 1 deletion gmlc/utilities/string_viewOps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/

/*
Copyright (c) 2017-2022,
Copyright (c) 2017-2024,
Battelle Memorial Institute; Lawrence Livermore National Security, LLC; Alliance
for Sustainable Energy, LLC. See the top-level NOTICE for additional details.
All rights reserved. SPDX-License-Identifier: BSD-3-Clause
Expand Down
2 changes: 1 addition & 1 deletion gmlc/utilities/string_viewOps.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/

/*
Copyright (c) 2017-2022,
Copyright (c) 2017-2024,
Battelle Memorial Institute; Lawrence Livermore National Security, LLC; Alliance
for Sustainable Energy, LLC. See the top-level NOTICE for additional details.
All rights reserved. SPDX-License-Identifier: BSD-3-Clause
Expand Down
2 changes: 1 addition & 1 deletion gmlc/utilities/timeRepresentation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* LLNS Copyright End
*/
/*
Copyright (c) 2017-2022,
Copyright (c) 2017-2024,
Battelle Memorial Institute; Lawrence Livermore National Security, LLC; Alliance
for Sustainable Energy, LLC. See the top-level NOTICE for additional details.
All rights reserved. SPDX-License-Identifier: BSD-3-Clause
Expand Down
2 changes: 1 addition & 1 deletion gmlc/utilities/timeStringOps.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2017-2020,
Copyright (c) 2017-2024,
Battelle Memorial Institute; Lawrence Livermore National Security, LLC; Alliance
for Sustainable Energy, LLC. See the top-level NOTICE for additional details.
All rights reserved.
Expand Down
4 changes: 2 additions & 2 deletions gmlc/utilities/vectorOps.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ void vectorMultAdd(

/** sum the absolute differences between two Vectors
@param a the first vector
@param b the secon vector
@param b the second vector
@param[out] diff a vector the absolute values of the differences
@param cnt the number of elements in the vector to compare and sum
@return the sum of the absolute values of the differences
Expand All @@ -837,7 +837,7 @@ X compareVec(
}
/** sum the absolute differences between two Vectors
@param a the first vector
@param b the secon vector
@param b the second vector
@param cnt the number of elements in the vector to compare and sum
@return the sum of the absolute values of the differences
*/
Expand Down

0 comments on commit f8fab15

Please sign in to comment.