Skip to content

Commit ffe155c

Browse files
committed
Copyright notice 2022
1 parent cdafab0 commit ffe155c

21 files changed

+20
-21
lines changed

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-2021 Sebastien Rombauts ([email protected])
3+
Copyright (c) 2012-2022 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ with a few intuitive and well documented C++ classes.
2222

2323
### License:
2424

25-
Copyright (c) 2012-2021 Sébastien Rombauts ([email protected])
25+
Copyright (c) 2012-2022 Sébastien Rombauts ([email protected])
2626
<a href="https://www.paypal.me/SRombauts" title="Pay Me a Beer! Donate with PayPal :)"><img src="https://www.paypalobjects.com/webstatic/paypalme/images/pp_logo_small.png" width="118"></a>
2727

2828
Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt

TODO.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ Missing unit tests in v2.0.0:
1515
- Load Extension (not practicable, and easy to verify by code review)
1616

1717
Advanced missing features:
18-
- #39: SAVEPOINT https://www.sqlite.org/lang_savepoint.html
19-
2018
- Add optional usage of experimental sqlite3_trace() function to enable statistics
2119
- Aggregate ?
2220

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-2021 Sebastien Rombauts ([email protected])
6+
* Copyright (c) 2012-2022 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-2021 Sebastien Rombauts ([email protected])
7+
* Copyright (c) 2015-2022 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-2021 Sebastien Rombauts ([email protected])
6+
* Copyright (c) 2012-2022 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/Database.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @ingroup SQLiteCpp
44
* @brief Management of a SQLite Database Connection.
55
*
6-
* Copyright (c) 2012-2021 Sebastien Rombauts ([email protected])
6+
* Copyright (c) 2012-2022 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-2021 Sebastien Rombauts ([email protected])
6+
* Copyright (c) 2012-2022 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-2021 Sebastien Rombauts ([email protected])
7+
* Copyright (c) 2019-2022 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/Savepoint.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +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])
8+
* Copyright (c) 2020-2022 Sebastien Rombauts ([email protected])
99
*
1010
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or
1111
* copy at http://opensource.org/licenses/MIT)

0 commit comments

Comments
 (0)