From b84721aed320a6a2071e723452f7693039ba831a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Sun, 8 Mar 2015 22:53:33 +0100 Subject: [PATCH] Update copyright date in recently modified files --- .travis.yml | 5 +++++ LICENSE.txt | 2 +- README.md | 2 +- build.bat | 2 +- build.sh | 4 ++-- include/SQLiteCpp/Column.h | 2 -- include/SQLiteCpp/Database.h | 2 +- include/SQLiteCpp/Statement.h | 2 +- src/Statement.cpp | 2 +- tests/Database_test.cpp | 2 +- tests/Statement_test.cpp | 2 +- 11 files changed, 15 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 694e5f8..f0b453f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,8 @@ +# Copyright (c) 2012-2015 Sébastien Rombauts (sebastien.rombauts@gmail.com) + language: cpp +# compilers to add to build matrix compiler: - gcc - clang @@ -8,6 +11,7 @@ before_install: - sudo apt-get update -qq - sudo apt-get install -qq cppcheck +# scripts to run before build # using a symbolic link to get the "make test" to work as if launched from the root directorys before_script: - mkdir build @@ -15,5 +19,6 @@ before_script: - cmake -DSQLITECPP_RUN_CPPLINT=ON -DSQLITECPP_RUN_CPPCHECK=ON -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON .. - ln -s ../examples examples +# build and run tests script: make && ctest --output-on-failure diff --git a/LICENSE.txt b/LICENSE.txt index c535de5..d241d90 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2012-2014 Sebastien Rombauts (sebastien.rombauts@gmail.com) +Copyright (c) 2012-2015 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 14e3d9e..b64a227 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ in a custom shared pointer (See the inner class "Statement::Ptr"). ### License -Copyright (c) 2012-2014 Sébastien Rombauts (sebastien.rombauts@gmail.com) +Copyright (c) 2012-2015 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 67166af..96ecca6 100644 --- a/build.bat +++ b/build.bat @@ -1,4 +1,4 @@ -@REM Copyright (c) 2013-2014 Sébastien Rombauts (sebastien.rombauts@gmail.com) +@REM Copyright (c) 2012-2015 Sébastien 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 4df686f..da667c7 100755 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ -# Copyright (c) 2013 Sébastien Rombauts (sebastien.rombauts@gmail.com) -# +# Copyright (c) 2012-2015 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/include/SQLiteCpp/Column.h b/include/SQLiteCpp/Column.h index fd971b0..34ed4d1 100644 --- a/include/SQLiteCpp/Column.h +++ b/include/SQLiteCpp/Column.h @@ -37,8 +37,6 @@ namespace SQLite * 2) the SQLite "Serialized" mode is not supported by SQLiteC++, * because of the way it shares the underling SQLite precompiled statement * in a custom shared pointer (See the inner class "Statement::Ptr"). - * - * @todo inline all simple getters */ class Column { diff --git a/include/SQLiteCpp/Database.h b/include/SQLiteCpp/Database.h index 09924c1..7cc44a8 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-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2015 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 9d6eb5a..521d38f 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-2014 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2015 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 01d3c97..d606e4d 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-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2015 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 1cb52d6..c92f0fb 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) 2014 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2015 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 4fd9c73..4a16dc1 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) 2014 Sebastien Rombauts (sebastien.rombauts@gmail.com) + * Copyright (c) 2012-2015 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)