Skip to content

Commit 59a047b

Browse files
authored
Release 3.3.3 (#507)
## What's Changed * Update SQLite from 3.46.1 to 3.49.2 (2025-05-07) by @SRombauts in #505 * Add a Github Dependabot config file by @SRombauts in #480 * Bump actions/checkout from 3 to 4 by @dependabot in #482 * Replace all double-quoted string literals by single quotes in unit test by @SRombauts in #483 * Use explicit versions of Ubuntu images instead of latest by @SRombauts in #484 * Test linking with builtin libsqlite3-dev package on Ubuntu by @SRombauts in #485 * Add logic to use different FindPackage for python if cmake is above 3.12 by @syntheticgio in #454 * tests/Database_test.cpp: fix a warning around `#endif` by @trofi in #489 * SQLiteCpp/Statement.h: add missing `<cstdint>` include by @trofi in #488 * sqlite3: set SQLITE_OMIT_LOAD_EXTENSION by @brt-v in #496 * Update googletest to v1.16.0 by @SRombauts in #506 * update meson dependencies by @UnixY2K in #508 ## New Contributors * @syntheticgio made their first contribution in #454 * @trofi made their first contribution in #489 * @brt-v made their first contribution in #496 **Full Changelog**: 3.3.2...3.3.3
2 parents 3fb735a + 28e8fbf commit 59a047b

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,3 +274,18 @@ Version 3.3.2 - 2024 Aug 16
274274
- Update SQLite from 3.43.0 to 3.46.1 (2024-08-13) (#461) and (#477)
275275
- Explicitly =delete; Statement::bindNoCopy(..., std::string&&) (#469)
276276

277+
Version 3.3.3 - 2025 May 20
278+
279+
- Update SQLite from 3.46.1 to 3.49.2 (2025-05-07) (#505)
280+
- SQLiteCpp/Statement.h: add missing `<cstdint>` include (#488)
281+
- sqlite3: set SQLITE_OMIT_LOAD_EXTENSION (#496)
282+
- tests/Database_test.cpp: fix a warning around `#endif` (#489)
283+
- Add a Github Dependabot config file (#480)
284+
- Bump actions/checkout from 3 to 4 in (#482)
285+
- Replace all double-quoted string literals in unit test (#483)
286+
- Use explicit versions of Ubuntu images instead of latest (#484)
287+
- Test linking with builtin libsqlite3-dev package on Ubuntu (#485)
288+
- Add logic to use different FindPackage for python if cmake is above 3.12 (#454)
289+
- Update googletest to v1.16.0 (#506)
290+
- update meson dependencies (#508)
291+

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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.2)
9+
project(SQLiteCpp VERSION 3.3.3)
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.2
41+
PROJECT_NUMBER = 3.3.3
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

include/SQLiteCpp/SQLiteCpp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@
4141
*
4242
* WARNING: shall always be updated in sync with PROJECT_VERSION in CMakeLists.txt
4343
*/
44-
#define SQLITECPP_VERSION "3.03.02" // 3.3.2
45-
#define SQLITECPP_VERSION_NUMBER 3003002 // 3.3.2
44+
#define SQLITECPP_VERSION "3.03.03" // 3.3.3
45+
#define SQLITECPP_VERSION_NUMBER 3003003 // 3.3.3
4646

package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
22
<package format="3">
33
<name>SQLiteCpp</name>
4-
<version>3.3.2</version>
4+
<version>3.3.3</version>
55
<description>A smart and easy to use C++ SQLite3 wrapper.</description>
66

77
<maintainer email="[email protected]">Sébastien Rombauts</maintainer>

0 commit comments

Comments
 (0)