From 99706d78eef714d416f5536e6cc5ce6f82310544 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Mon, 21 Sep 2026 22:04:40 +0200 Subject: [PATCH 1/3] Update copyright years to 2026 --- .github/copilot-instructions.md | 2 +- CMakeLists.txt | 2 +- LICENSE.txt | 2 +- README.md | 2 +- build.bat | 2 +- build.sh | 2 +- examples/example1/main.cpp | 2 +- include/SQLiteCpp/Assertion.h | 2 +- include/SQLiteCpp/Backup.h | 2 +- include/SQLiteCpp/Column.h | 2 +- include/SQLiteCpp/Database.h | 2 +- include/SQLiteCpp/Exception.h | 2 +- include/SQLiteCpp/ExecuteMany.h | 2 +- include/SQLiteCpp/SQLiteCpp.h | 2 +- include/SQLiteCpp/Savepoint.h | 2 +- include/SQLiteCpp/Statement.h | 2 +- include/SQLiteCpp/Transaction.h | 2 +- include/SQLiteCpp/VariadicBind.h | 2 +- src/Backup.cpp | 2 +- src/Column.cpp | 2 +- src/Database.cpp | 2 +- src/Exception.cpp | 2 +- src/Savepoint.cpp | 2 +- src/Statement.cpp | 2 +- src/Transaction.cpp | 2 +- tests/Column_test.cpp | 2 +- tests/Database_test.cpp | 2 +- 27 files changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 40019067..57647ac7 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -185,7 +185,7 @@ SQLiteCpp/ * @ingroup SQLiteCpp * @brief Brief description of the file. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/CMakeLists.txt b/CMakeLists.txt index b6c47d0d..4920ba92 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # Main CMake file for compiling the library itself, examples and tests. # -# Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) +# Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) # # Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt # or copy at http://opensource.org/licenses/MIT) diff --git a/LICENSE.txt b/LICENSE.txt index 0abd7549..02ac71af 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) +Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 4088019b..eddf2c9c 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ with a few intuitive and well documented C++ classes. ### License: -Copyright (c) 2012-2025 Sébastien Rombauts (sebastien.rombauts@gmail.com) +Copyright (c) 2012-2026 Sébastien Rombauts (sebastien.rombauts@gmail.com) Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or copy at http://opensource.org/licenses/MIT) diff --git a/build.bat b/build.bat index 9722b7e1..d1e5b98c 100644 --- a/build.bat +++ b/build.bat @@ -1,4 +1,4 @@ -@REM Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) +@REM Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) @REM @REM Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt @REM or copy at http://opensource.org/licenses/MIT) diff --git a/build.sh b/build.sh index 52d43e60..cedcdbcc 100755 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (c) 2012-2025 Sébastien Rombauts (sebastien.rombauts@gmail.com) +# Copyright (c) 2012-2026 Sébastien Rombauts (sebastien.rombauts@gmail.com) # # Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt # or copy at http://opensource.org/licenses/MIT) diff --git a/examples/example1/main.cpp b/examples/example1/main.cpp index 909faf29..3cbb9531 100644 --- a/examples/example1/main.cpp +++ b/examples/example1/main.cpp @@ -4,7 +4,7 @@ * * Demonstrates how-to use the SQLite++ wrapper * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/include/SQLiteCpp/Assertion.h b/include/SQLiteCpp/Assertion.h index 48a987c3..57429309 100644 --- a/include/SQLiteCpp/Assertion.h +++ b/include/SQLiteCpp/Assertion.h @@ -3,7 +3,7 @@ * @ingroup SQLiteCpp * @brief Definition of the SQLITECPP_ASSERT() macro. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/include/SQLiteCpp/Backup.h b/include/SQLiteCpp/Backup.h index d71fc246..7306d186 100644 --- a/include/SQLiteCpp/Backup.h +++ b/include/SQLiteCpp/Backup.h @@ -4,7 +4,7 @@ * @brief Backup is used to backup a database file in a safe and online way. * * Copyright (c) 2015 Shibao HONG (shibaohong@outlook.com) - * Copyright (c) 2015-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2015-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/include/SQLiteCpp/Column.h b/include/SQLiteCpp/Column.h index bf5760ab..1503594b 100644 --- a/include/SQLiteCpp/Column.h +++ b/include/SQLiteCpp/Column.h @@ -3,7 +3,7 @@ * @ingroup SQLiteCpp * @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/include/SQLiteCpp/Database.h b/include/SQLiteCpp/Database.h index bb3d876a..d04ebf0e 100644 --- a/include/SQLiteCpp/Database.h +++ b/include/SQLiteCpp/Database.h @@ -3,7 +3,7 @@ * @ingroup SQLiteCpp * @brief Management of a SQLite Database Connection. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/include/SQLiteCpp/Exception.h b/include/SQLiteCpp/Exception.h index 5ade967a..305a1f3f 100644 --- a/include/SQLiteCpp/Exception.h +++ b/include/SQLiteCpp/Exception.h @@ -3,7 +3,7 @@ * @ingroup SQLiteCpp * @brief Encapsulation of the error message from SQLite3 on a std::runtime_error. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/include/SQLiteCpp/ExecuteMany.h b/include/SQLiteCpp/ExecuteMany.h index c2d2895b..548daf08 100644 --- a/include/SQLiteCpp/ExecuteMany.h +++ b/include/SQLiteCpp/ExecuteMany.h @@ -4,7 +4,7 @@ * @brief Convenience function to execute a Statement with multiple Parameter sets * * Copyright (c) 2019 Maximilian Bachmann (contact@maxbachmann.de) - * Copyright (c) 2019-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2019-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/include/SQLiteCpp/SQLiteCpp.h b/include/SQLiteCpp/SQLiteCpp.h index a6412d92..7d68a8f4 100644 --- a/include/SQLiteCpp/SQLiteCpp.h +++ b/include/SQLiteCpp/SQLiteCpp.h @@ -5,7 +5,7 @@ * * Include this main header file in your project to gain access to all functionality provided by the wrapper. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/include/SQLiteCpp/Savepoint.h b/include/SQLiteCpp/Savepoint.h index 180f8ac4..31fe2b6e 100644 --- a/include/SQLiteCpp/Savepoint.h +++ b/include/SQLiteCpp/Savepoint.h @@ -5,7 +5,7 @@ * secured operation. Similar to a transaction while allowing child savepoints. * * Copyright (c) 2020 Kelvin Hammond (hammond.kelvin@gmail.com) - * Copyright (c) 2020-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2020-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or * copy at http://opensource.org/licenses/MIT) diff --git a/include/SQLiteCpp/Statement.h b/include/SQLiteCpp/Statement.h index e69930bf..d959c255 100644 --- a/include/SQLiteCpp/Statement.h +++ b/include/SQLiteCpp/Statement.h @@ -3,7 +3,7 @@ * @ingroup SQLiteCpp * @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/include/SQLiteCpp/Transaction.h b/include/SQLiteCpp/Transaction.h index 0c27ad85..7cb5cfc0 100644 --- a/include/SQLiteCpp/Transaction.h +++ b/include/SQLiteCpp/Transaction.h @@ -3,7 +3,7 @@ * @ingroup SQLiteCpp * @brief A Transaction is way to group multiple SQL statements into an atomic secured operation. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/include/SQLiteCpp/VariadicBind.h b/include/SQLiteCpp/VariadicBind.h index a859b48b..9474a50b 100644 --- a/include/SQLiteCpp/VariadicBind.h +++ b/include/SQLiteCpp/VariadicBind.h @@ -4,7 +4,7 @@ * @brief Convenience function for Statement::bind(...) * * Copyright (c) 2016 Paul Dreik (github@pauldreik.se) - * Copyright (c) 2016-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2016-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * Copyright (c) 2019 Maximilian Bachmann (contact@maxbachmann.de) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt diff --git a/src/Backup.cpp b/src/Backup.cpp index b24a2c6d..b3ce9bec 100644 --- a/src/Backup.cpp +++ b/src/Backup.cpp @@ -4,7 +4,7 @@ * @brief Backup is used to backup a database file in a safe and online way. * * Copyright (c) 2015 Shibao HONG (shibaohong@outlook.com) - * Copyright (c) 2015-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2015-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/Column.cpp b/src/Column.cpp index 2485a735..93ac8ca0 100644 --- a/src/Column.cpp +++ b/src/Column.cpp @@ -3,7 +3,7 @@ * @ingroup SQLiteCpp * @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/Database.cpp b/src/Database.cpp index 070ee093..7b723f59 100644 --- a/src/Database.cpp +++ b/src/Database.cpp @@ -3,7 +3,7 @@ * @ingroup SQLiteCpp * @brief Management of a SQLite Database Connection. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/Exception.cpp b/src/Exception.cpp index c289743e..7d91b3c6 100644 --- a/src/Exception.cpp +++ b/src/Exception.cpp @@ -3,7 +3,7 @@ * @ingroup SQLiteCpp * @brief Encapsulation of the error message from SQLite3 on a std::runtime_error. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/Savepoint.cpp b/src/Savepoint.cpp index 1b87ee86..36cf36aa 100644 --- a/src/Savepoint.cpp +++ b/src/Savepoint.cpp @@ -5,7 +5,7 @@ * secured operation. Similar to a transaction while allowing child savepoints. * * Copyright (c) 2020 Kelvin Hammond (hammond.kelvin@gmail.com) - * Copyright (c) 2020-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2020-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or * copy at http://opensource.org/licenses/MIT) diff --git a/src/Statement.cpp b/src/Statement.cpp index 68293c8b..1c546c1d 100644 --- a/src/Statement.cpp +++ b/src/Statement.cpp @@ -3,7 +3,7 @@ * @ingroup SQLiteCpp * @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/src/Transaction.cpp b/src/Transaction.cpp index f31ef5e4..31ea1e2e 100644 --- a/src/Transaction.cpp +++ b/src/Transaction.cpp @@ -3,7 +3,7 @@ * @ingroup SQLiteCpp * @brief A Transaction is way to group multiple SQL statements into an atomic secured operation. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/tests/Column_test.cpp b/tests/Column_test.cpp index f4911397..1dee5b0d 100644 --- a/tests/Column_test.cpp +++ b/tests/Column_test.cpp @@ -3,7 +3,7 @@ * @ingroup tests * @brief Test of a SQLiteCpp Column. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/tests/Database_test.cpp b/tests/Database_test.cpp index 8e3d4d27..5cf57216 100644 --- a/tests/Database_test.cpp +++ b/tests/Database_test.cpp @@ -3,7 +3,7 @@ * @ingroup tests * @brief Test of a SQLiteCpp Database. * - * Copyright (c) 2012-2025 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) From ff215bc3d4c31f1185a43e17950c2be12b32754e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Mon, 21 Sep 2026 22:05:02 +0200 Subject: [PATCH 2/3] Update CHANGELOG for 2026 copyright refresh --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d612da63..dd396b09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -330,3 +330,4 @@ Version 3.4.0 - 2026 ??? - Remove obsolete Travis CI configuration and active references (#572) - Remove AppVeyor and retain Visual Studio 2022 Release Win32/x86 coverage in GitHub Actions (#573) - Add C++11 & C++17 standard tests (#574) +- Update copyright years to 2026 across project files (#578) From 0f13333b208eda7b0fbc539f42db72b48d2a143b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Mon, 21 Sep 2026 22:15:03 +0200 Subject: [PATCH 3/3] Update remaining copyright years to 2026 --- docs/README.md | 2 +- examples/example2/CMakeLists.txt | 2 +- examples/example2/build.bat | 2 +- examples/example2/build.sh | 2 +- examples/example2/src/main.cpp | 2 +- include/SQLiteCpp/SQLiteCppExport.h | 2 +- include/SQLiteCpp/Utils.h | 2 +- tests/Backup_test.cpp | 2 +- tests/Exception_test.cpp | 2 +- tests/ExecuteMany_test.cpp | 2 +- tests/Statement_test.cpp | 2 +- tests/Transaction_test.cpp | 2 +- tests/VariadicBind_test.cpp | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) mode change 100644 => 100755 examples/example2/build.sh diff --git a/docs/README.md b/docs/README.md index a89a4886..56d36e6f 100644 --- a/docs/README.md +++ b/docs/README.md @@ -23,7 +23,7 @@ with a few intuitive and well documented C++ classes. ### License: -Copyright (c) 2012-2023 Sébastien Rombauts (sebastien.rombauts@gmail.com) +Copyright (c) 2012-2026 Sébastien Rombauts (sebastien.rombauts@gmail.com) Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt diff --git a/examples/example2/CMakeLists.txt b/examples/example2/CMakeLists.txt index 0b2c0eb7..6ad59e08 100644 --- a/examples/example2/CMakeLists.txt +++ b/examples/example2/CMakeLists.txt @@ -1,6 +1,6 @@ # Example CMake file for compiling & linking a project with the the SQLiteCpp wrapper # -# Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com) +# Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) # # Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt # or copy at http://opensource.org/licenses/MIT) diff --git a/examples/example2/build.bat b/examples/example2/build.bat index d848a700..a788b081 100644 --- a/examples/example2/build.bat +++ b/examples/example2/build.bat @@ -1,4 +1,4 @@ -@REM Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com) +@REM Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) @REM @REM Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt @REM or copy at http://opensource.org/licenses/MIT) diff --git a/examples/example2/build.sh b/examples/example2/build.sh old mode 100644 new mode 100755 index 8dddf984..646b41cf --- a/examples/example2/build.sh +++ b/examples/example2/build.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (c) 2012-2023 Sébastien Rombauts (sebastien.rombauts@gmail.com) +# Copyright (c) 2012-2026 Sébastien Rombauts (sebastien.rombauts@gmail.com) # # Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt # or copy at http://opensource.org/licenses/MIT) diff --git a/examples/example2/src/main.cpp b/examples/example2/src/main.cpp index 6d9c75f4..4fff78ed 100644 --- a/examples/example2/src/main.cpp +++ b/examples/example2/src/main.cpp @@ -4,7 +4,7 @@ * * Demonstrates how-to use the SQLite++ wrapper * - * Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/include/SQLiteCpp/SQLiteCppExport.h b/include/SQLiteCpp/SQLiteCppExport.h index d6e9a06a..e8e36d52 100644 --- a/include/SQLiteCpp/SQLiteCppExport.h +++ b/include/SQLiteCpp/SQLiteCppExport.h @@ -4,7 +4,7 @@ * @brief File with macros needed in the generation of Windows DLLs * * - * Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/include/SQLiteCpp/Utils.h b/include/SQLiteCpp/Utils.h index 7845ec0e..1372e2d2 100644 --- a/include/SQLiteCpp/Utils.h +++ b/include/SQLiteCpp/Utils.h @@ -3,7 +3,7 @@ * @ingroup SQLiteCpp * @brief Definition of the SQLITECPP_PURE_FUNC macro. * - * Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/tests/Backup_test.cpp b/tests/Backup_test.cpp index a4da2cfb..b6393a52 100644 --- a/tests/Backup_test.cpp +++ b/tests/Backup_test.cpp @@ -4,7 +4,7 @@ * @brief Test of a SQLite Backup. * * Copyright (c) 2015 Shibao HONG (shibaohong@outlook.com) - * Copyright (c) 2015-2020 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2015-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/tests/Exception_test.cpp b/tests/Exception_test.cpp index d9c22376..bcd0f2ac 100644 --- a/tests/Exception_test.cpp +++ b/tests/Exception_test.cpp @@ -3,7 +3,7 @@ * @ingroup tests * @brief Test of a SQLite Transaction. * - * Copyright (c) 2012-2020 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/tests/ExecuteMany_test.cpp b/tests/ExecuteMany_test.cpp index c4eaf1bc..95ac751c 100644 --- a/tests/ExecuteMany_test.cpp +++ b/tests/ExecuteMany_test.cpp @@ -4,7 +4,7 @@ * @brief Test of variadic bind * * Copyright (c) 2019 Maximilian Bachmann (contact@maxbachmann.de) - * Copyright (c) 2019-2020 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2019-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/tests/Statement_test.cpp b/tests/Statement_test.cpp index 78927d57..3db67a41 100644 --- a/tests/Statement_test.cpp +++ b/tests/Statement_test.cpp @@ -3,7 +3,7 @@ * @ingroup tests * @brief Test of a SQLiteCpp Statement. * - * Copyright (c) 2012-2020 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/tests/Transaction_test.cpp b/tests/Transaction_test.cpp index 5401bfa8..65256069 100644 --- a/tests/Transaction_test.cpp +++ b/tests/Transaction_test.cpp @@ -3,7 +3,7 @@ * @ingroup tests * @brief Test of a SQLite Transaction. * - * Copyright (c) 2012-2020 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt * or copy at http://opensource.org/licenses/MIT) diff --git a/tests/VariadicBind_test.cpp b/tests/VariadicBind_test.cpp index d5ef4212..a536642e 100644 --- a/tests/VariadicBind_test.cpp +++ b/tests/VariadicBind_test.cpp @@ -4,7 +4,7 @@ * @brief Test of variadic bind * * Copyright (c) 2016 Paul Dreik (github@pauldreik.se) - * Copyright (c) 2016-2020 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2016-2026 Sebastien Rombauts (sebastien.rombauts@gmail.com) * Copyright (c) 2019 Maximilian Bachmann (github@maxbachmann) * * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt