Skip to content

Commit 7dbcf48

Browse files
committed
Update copyright notice to 2023
1 parent cf3b750 commit 7dbcf48

36 files changed

+459
-459
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-2022 Sebastien Rombauts ([email protected])
1+
# Copyright (c) 2012-2023 Sebastien Rombauts ([email protected])
22

33
language: cpp
44

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-2022 Sebastien Rombauts ([email protected])
3+
# Copyright (c) 2012-2023 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-2022 Sebastien Rombauts ([email protected])
3+
Copyright (c) 2012-2023 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-2022 Sébastien Rombauts ([email protected])
25+
Copyright (c) 2012-2023 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

appveyor.yml

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
1-
# Copyright (c) 2012-2022 Sebastien Rombauts ([email protected])
2-
3-
# build format
4-
version: "{build}"
5-
6-
# scripts that run after cloning repository
7-
install:
8-
- git submodule update --init --recursive
9-
1+
# Copyright (c) 2012-2023 Sebastien Rombauts ([email protected])
2+
3+
# build format
4+
version: "{build}"
5+
6+
# scripts that run after cloning repository
7+
install:
8+
- git submodule update --init --recursive
9+
1010
image:
11-
# Reduce the number of images to test on AppVeyor, to speed up the build
12-
- Visual Studio 2022
13-
# - Visual Studio 2019
14-
# - Visual Studio 2017
15-
- Visual Studio 2015
16-
17-
# configurations to add to build matrix
18-
# TODO: MinGW Makefiles and MSYS Makefiles
19-
configuration:
20-
- Debug
21-
- Release
22-
23-
environment:
24-
matrix:
25-
- arch: Win32
26-
- arch: x64
27-
28-
init:
29-
- echo %APPVEYOR_BUILD_WORKER_IMAGE% - %configuration% - %arch%
30-
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" (set vs=Visual Studio 15 2017)
31-
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" (set vs=Visual Studio 14 2015)
32-
- if "%arch%"=="x64" (set generator="%vs% Win64") else (set generator="%vs%")
33-
# CMake uses a different grammar for Visual Studio 2019, with -A to specify architecture:
34-
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2019" (set generator="Visual Studio 16 2019" -A %arch%)
35-
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2022" (set generator="Visual Studio 17 2022" -A %arch%)
36-
- echo %generator%
37-
38-
# scripts to run before build
39-
before_build:
40-
- mkdir build
41-
- cd build
42-
- cmake -DCMAKE_VERBOSE_MAKEFILE=ON -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON -DSQLITECPP_RUN_CPPCHECK=OFF .. -G %generator%
43-
44-
# build examples, and run tests (ie make & make test)
45-
build_script:
46-
- cmake --build . --config %configuration%
47-
- ctest --output-on-failure
11+
# Reduce the number of images to test on AppVeyor, to speed up the build
12+
- Visual Studio 2022
13+
# - Visual Studio 2019
14+
# - Visual Studio 2017
15+
- Visual Studio 2015
16+
17+
# configurations to add to build matrix
18+
# TODO: MinGW Makefiles and MSYS Makefiles
19+
configuration:
20+
- Debug
21+
- Release
22+
23+
environment:
24+
matrix:
25+
- arch: Win32
26+
- arch: x64
27+
28+
init:
29+
- echo %APPVEYOR_BUILD_WORKER_IMAGE% - %configuration% - %arch%
30+
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" (set vs=Visual Studio 15 2017)
31+
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" (set vs=Visual Studio 14 2015)
32+
- if "%arch%"=="x64" (set generator="%vs% Win64") else (set generator="%vs%")
33+
# CMake uses a different grammar for Visual Studio 2019, with -A to specify architecture:
34+
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2019" (set generator="Visual Studio 16 2019" -A %arch%)
35+
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2022" (set generator="Visual Studio 17 2022" -A %arch%)
36+
- echo %generator%
37+
38+
# scripts to run before build
39+
before_build:
40+
- mkdir build
41+
- cd build
42+
- cmake -DCMAKE_VERBOSE_MAKEFILE=ON -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON -DSQLITECPP_RUN_CPPCHECK=OFF .. -G %generator%
43+
44+
# build examples, and run tests (ie make & make test)
45+
build_script:
46+
- cmake --build . --config %configuration%
47+
- ctest --output-on-failure

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-2022 Sebastien Rombauts ([email protected])
1+
@REM Copyright (c) 2012-2023 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)

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# Copyright (c) 2012-2020 Sébastien Rombauts ([email protected])
2+
# Copyright (c) 2012-2023 Sébastien Rombauts ([email protected])
33
#
44
# Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
55
# or copy at http://opensource.org/licenses/MIT)

0 commit comments

Comments
 (0)