Skip to content

Commit beb2b29

Browse files
committed
Update copyright to 2021
1 parent 3aeeb8d commit beb2b29

18 files changed

+26
-17
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
1+
# Copyright (c) 2012-2021 Sebastien Rombauts ([email protected])
22

33
language: cpp
44

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ Version 3.1.1 - August 19 2020
188188
- #293 Remove FindSQLiteCpp.cmake from sum01
189189

190190
Version 3.x - 2021
191-
- #300 #316 Updated SQLite3 from 3.32.3 to 3.34.0 (2020-12-01)
191+
- #300 #316 Updated SQLite3 from 3.32.3 to 3.36.0 (2021-06-18)
192192
- #236 Disable explicit setting of MSVC runtime from BioDataAnalysis/emmenlau
193193
- #308 Fix build warning due to string truncation from stauffer-garmin
194194
- #311 Add Database::tryExec() from kcowolf
@@ -197,3 +197,11 @@ Version 3.x - 2021
197197
- #295 Compile internal SQLite library with -ffunction-sections from smichaku
198198
- #299 Added Savepoint support from catalogm
199199
- #333 Added Database and Statement getChanges()
200+
- #305 Add other constants that work with sqlite3_open_v2 from LuAPi/more-flags
201+
- #333 Added Database and Statement method getChanges() from SRombauts/get-changes
202+
- #334 fix link for HAS_CODEC from linux-fan-dave/master
203+
- #338 fix load extension from paulo-coutinho/fix-load-extension
204+
- #335 from jagerman/older-macos-avoid-std-filesystem
205+
- #337 Add catkin configuration from ardabbour/master
206+
- #339 Allow specifying transaction behaviors DEFERRED, IMMEDIATE, and EXCLUSIVE from jjenkins278/transaction_behavior
207+

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Main CMake file for compiling the library itself, examples and tests.
22
#
3-
# Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
3+
# Copyright (c) 2012-2021 Sebastien Rombauts ([email protected])
44
#
55
# Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
66
# or copy at http://opensource.org/licenses/MIT)

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
3+
Copyright (c) 2012-2021 Sebastien Rombauts ([email protected])
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
1+
# Copyright (c) 2012-2021 Sebastien Rombauts ([email protected])
22

33
# build format
44
version: "{build}"

build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@REM Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
1+
@REM Copyright (c) 2012-2021 Sebastien Rombauts ([email protected])
22
@REM
33
@REM Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
44
@REM or copy at http://opensource.org/licenses/MIT)

include/SQLiteCpp/Assertion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @ingroup SQLiteCpp
44
* @brief Definition of the SQLITECPP_ASSERT() macro.
55
*
6-
* Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
6+
* Copyright (c) 2012-2021 Sebastien Rombauts ([email protected])
77
*
88
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
99
* or copy at http://opensource.org/licenses/MIT)

include/SQLiteCpp/Backup.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @brief Backup is used to backup a database file in a safe and online way.
55
*
66
* Copyright (c) 2015 Shibao HONG ([email protected])
7-
* Copyright (c) 2015-2020 Sebastien Rombauts ([email protected])
7+
* Copyright (c) 2015-2021 Sebastien Rombauts ([email protected])
88
*
99
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
1010
* or copy at http://opensource.org/licenses/MIT)

include/SQLiteCpp/Column.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @ingroup SQLiteCpp
44
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
55
*
6-
* Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
6+
* Copyright (c) 2012-2021 Sebastien Rombauts ([email protected])
77
*
88
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
99
* or copy at http://opensource.org/licenses/MIT)

include/SQLiteCpp/Exception.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @ingroup SQLiteCpp
44
* @brief Encapsulation of the error message from SQLite3 on a std::runtime_error.
55
*
6-
* Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
6+
* Copyright (c) 2012-2021 Sebastien Rombauts ([email protected])
77
*
88
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
99
* or copy at http://opensource.org/licenses/MIT)

include/SQLiteCpp/ExecuteMany.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @brief Convenience function to execute a Statement with multiple Parameter sets
55
*
66
* Copyright (c) 2019 Maximilian Bachmann ([email protected])
7-
* Copyright (c) 2019-2020 Sebastien Rombauts ([email protected])
7+
* Copyright (c) 2019-2021 Sebastien Rombauts ([email protected])
88
*
99
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
1010
* or copy at http://opensource.org/licenses/MIT)

include/SQLiteCpp/SQLiteCpp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* Include this main header file in your project to gain access to all functionality provided by the wrapper.
77
*
8-
* Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
8+
* Copyright (c) 2012-2021 Sebastien Rombauts ([email protected])
99
*
1010
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
1111
* or copy at http://opensource.org/licenses/MIT)

include/SQLiteCpp/Savepoint.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* secured operation. Similar to a transaction while allowing child savepoints.
66
*
77
* Copyright (c) 2020 Kelvin Hammond ([email protected])
8+
* Copyright (c) 2020-2021 Sebastien Rombauts ([email protected])
89
*
910
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or
1011
* copy at http://opensource.org/licenses/MIT)

include/SQLiteCpp/Transaction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @ingroup SQLiteCpp
44
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
55
*
6-
* Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
6+
* Copyright (c) 2012-2021 Sebastien Rombauts ([email protected])
77
*
88
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
99
* or copy at http://opensource.org/licenses/MIT)

include/SQLiteCpp/VariadicBind.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @brief Convenience function for Statement::bind(...)
55
*
66
* Copyright (c) 2016 Paul Dreik ([email protected])
7-
* Copyright (c) 2016-2020 Sebastien Rombauts ([email protected])
7+
* Copyright (c) 2016-2021 Sebastien Rombauts ([email protected])
88
* Copyright (c) 2019 Maximilian Bachmann ([email protected])
99
*
1010
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt

src/Backup.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @brief Backup is used to backup a database file in a safe and online way.
55
*
66
* Copyright (c) 2015 Shibao HONG ([email protected])
7-
* Copyright (c) 2015-2020 Sebastien Rombauts ([email protected])
7+
* Copyright (c) 2015-2021 Sebastien Rombauts ([email protected])
88
*
99
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
1010
* or copy at http://opensource.org/licenses/MIT)

src/Column.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @ingroup SQLiteCpp
44
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
55
*
6-
* Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
6+
* Copyright (c) 2012-2021 Sebastien Rombauts ([email protected])
77
*
88
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
99
* or copy at http://opensource.org/licenses/MIT)

src/Exception.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @ingroup SQLiteCpp
44
* @brief Encapsulation of the error message from SQLite3 on a std::runtime_error.
55
*
6-
* Copyright (c) 2012-2020 Sebastien Rombauts ([email protected])
6+
* Copyright (c) 2012-2021 Sebastien Rombauts ([email protected])
77
*
88
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
99
* or copy at http://opensource.org/licenses/MIT)

0 commit comments

Comments
 (0)