From d020c5f6944d4ae4306092ea5ede708ba0753863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Sat, 20 Jan 2018 21:26:32 +0100 Subject: [PATCH] Update copyright notices to 2018 --- .travis.yml | 2 +- CMakeLists.txt | 2 +- LICENSE.txt | 2 +- README.md | 2 +- appveyor.yml | 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/SQLiteCpp.h | 2 +- include/SQLiteCpp/Statement.h | 2 +- include/SQLiteCpp/Transaction.h | 2 +- include/SQLiteCpp/Utils.h | 2 +- include/SQLiteCpp/VariadicBind.h | 2 +- src/Backup.cpp | 2 +- src/Column.cpp | 2 +- src/Database.cpp | 2 +- src/Exception.cpp | 2 +- src/Statement.cpp | 2 +- tests/Backup_test.cpp | 2 +- tests/Column_test.cpp | 2 +- tests/Database_test.cpp | 2 +- tests/Exception_test.cpp | 2 +- tests/Statement_test.cpp | 2 +- tests/Transaction_test.cpp | 2 +- tests/VariadicBind_test.cpp | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/.travis.yml b/.travis.yml index dcdeb9c..14241fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2012-2017 Sebastien Rombauts (sebastien.rombauts@gmail.com) +# Copyright (c) 2012-2018 Sebastien Rombauts (sebastien.rombauts@gmail.com) # request for Ubuntu 14.04 Trusty VM sudo: true diff --git a/CMakeLists.txt b/CMakeLists.txt index 15aff3a..55ef8cc 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) +# Copyright (c) 2012-2018 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 d565c60..6448851 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2012-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) +Copyright (c) 2012-2018 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 8fb68a6..5d5d80c 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ with a few intuitive and well documented C++ classes. ### License: -Copyright (c) 2012-2017 Sébastien Rombauts (sebastien.rombauts@gmail.com) +Copyright (c) 2012-2018 Sébastien Rombauts (sebastien.rombauts@gmail.com) Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt diff --git a/appveyor.yml b/appveyor.yml index 2402119..38032a7 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2012-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) +# Copyright (c) 2012-2018 Sebastien Rombauts (sebastien.rombauts@gmail.com) # build format version: "{build}" diff --git a/build.bat b/build.bat index 895096b..8c2a178 100644 --- a/build.bat +++ b/build.bat @@ -1,4 +1,4 @@ -@REM Copyright (c) 2012-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) +@REM Copyright (c) 2012-2018 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 8eb757d..5800ddb 100755 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (c) 2012-2016 Sébastien Rombauts (sebastien.rombauts@gmail.com) +# Copyright (c) 2012-2018 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 9aaffd7..bce11fd 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 4a85c3d..a9f47e8 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 9f54ada..3925baf 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2015-2018 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 e1c1cc5..a4d1e59 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 977e676..d46f736 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-2017 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 efc9fb5..0702944 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 086e13a..53b3fa2 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 d80e39b..66a013a 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 7e92a6d..192bc49 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 7f05de4..9d7c83d 100644 --- a/include/SQLiteCpp/Utils.h +++ b/include/SQLiteCpp/Utils.h @@ -3,7 +3,7 @@ * @ingroup SQLiteCpp * @brief Shared utility macros and functions. * - * Copyright (c) 2013-2017 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2013-2018 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 524cdf6..a177b84 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 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2016-2018 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/Backup.cpp b/src/Backup.cpp index 8b81be0..6cbe3b6 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2015-2018 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 3508323..92ea568 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 3b8f24f..0356adf 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-2017 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 69e114e..5d96ad9 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 d053340..5118ca9 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 4ec37a1..eab5043 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2015-2018 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 c7f14a4..abc3ad2 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 b42e89c..3ddf7dc 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 d2c1ef8..807cba8 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 76139dd..f25e08d 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 c10db32..369bf4a 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-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2018 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 50973fd..81863b3 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 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2016-2018 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)