Skip to content

Commit 08aa70a

Browse files
authored
Release 3.3.2
2 parents 73f788d + 31463a9 commit 08aa70a

32 files changed

+45
-34
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,3 +263,14 @@ Version 3.3.1 - 2023 Aug 27
263263
- Set -DBUILD_SHARED_LIBS=ON by default on scripts and CI/CD (#442)
264264
- Update SQLite from 3.42.0 to 3.43.0 (2023-08-24) (#443)
265265
- Rename the original build.yml to cmake.yml vs meson.yml (#444)
266+
267+
Version 3.3.2 - 2024 Aug 16
268+
269+
- Fix and update Travis CI workflow (#450)
270+
- Update Googletest to v1.15.2 (#451) and (#478)
271+
- [Meson] update meson dependencies (#448)
272+
- Macos ci fix (#476)
273+
- Update meson dependencies [Meson only] (#475)
274+
- Update SQLite from 3.43.0 to 3.46.1 (2024-08-13) (#461) and (#477)
275+
- Explicitly =delete; Statement::bindNoCopy(..., std::string&&) (#469)
276+

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Main CMake file for compiling the library itself, examples and tests.
22
#
3-
# Copyright (c) 2012-2023 Sebastien Rombauts ([email protected])
3+
# Copyright (c) 2012-2024 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)
77
cmake_minimum_required(VERSION 3.5)
88
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") # custom CMake modules like FindSQLiteCpp
9-
project(SQLiteCpp VERSION 3.3.1)
9+
project(SQLiteCpp VERSION 3.3.2)
1010

1111
# SQLiteC++ 3.x requires C++11 features
1212
if (NOT CMAKE_CXX_STANDARD)

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = SQLiteC++
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 3.3.1
41+
PROJECT_NUMBER = 3.3.2
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

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-2023 Sebastien Rombauts ([email protected])
3+
Copyright (c) 2012-2024 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-2023 Sébastien Rombauts ([email protected])
25+
Copyright (c) 2012-2024 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2012-2023 Sebastien Rombauts ([email protected])
1+
# Copyright (c) 2012-2024 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-2023 Sebastien Rombauts ([email protected])
1+
@REM Copyright (c) 2012-2024 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-2023 Sébastien Rombauts ([email protected])
2+
# Copyright (c) 2012-2024 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)

examples/example1/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Demonstrates how-to use the SQLite++ wrapper
66
*
7-
* Copyright (c) 2012-2023 Sebastien Rombauts ([email protected])
7+
* Copyright (c) 2012-2024 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/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-2023 Sebastien Rombauts ([email protected])
6+
* Copyright (c) 2012-2024 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)