From df11c667fd3e59f8518325e32fcf32a64494d847 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Wed, 24 May 2023 18:40:55 +0200 Subject: [PATCH] Update project version to 3.3.0 --- CMakeLists.txt | 2 +- Doxyfile | 2 +- include/SQLiteCpp/SQLiteCpp.h | 5 ++--- package.xml | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 24235759..df5693d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ # or copy at http://opensource.org/licenses/MIT) cmake_minimum_required(VERSION 3.1) # for "CMAKE_CXX_STANDARD" version list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") # custom CMake modules like FindSQLiteCpp -project(SQLiteCpp VERSION 3.2.1) +project(SQLiteCpp VERSION 3.3.0) # SQLiteC++ 3.x requires C++11 features if (NOT CMAKE_CXX_STANDARD) diff --git a/Doxyfile b/Doxyfile index 4bcd1286..749b68ab 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = SQLiteC++ # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 3.2.1 +PROJECT_NUMBER = 3.3.0 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/include/SQLiteCpp/SQLiteCpp.h b/include/SQLiteCpp/SQLiteCpp.h index 106cbc6f..f52d520b 100644 --- a/include/SQLiteCpp/SQLiteCpp.h +++ b/include/SQLiteCpp/SQLiteCpp.h @@ -41,7 +41,6 @@ * * WARNING: shall always be updated in sync with PROJECT_VERSION in CMakeLists.txt */ -#define SQLITECPP_VERSION "3.02.01" // 3.2.1 -#define SQLITECPP_VERSION_NUMBER 3002001 // 3.2.1 - +#define SQLITECPP_VERSION "3.03.00" // 3.3.0 +#define SQLITECPP_VERSION_NUMBER 3003000 // 3.3.0 diff --git a/package.xml b/package.xml index 762c852d..fe1e721e 100644 --- a/package.xml +++ b/package.xml @@ -1,7 +1,7 @@ SQLiteCpp - 3.2.1 + 3.3.0 A smart and easy to use C++ SQLite3 wrapper. Sébastien Rombauts