diff --git a/CMakeLists.txt b/CMakeLists.txt index 14d8484..8c44321 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ # or copy at http://opensource.org/licenses/MIT) cmake_minimum_required(VERSION 3.5) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") # custom CMake modules like FindSQLiteCpp -project(SQLiteCpp VERSION 3.3.1) +project(SQLiteCpp VERSION 3.3.2) # SQLiteC++ 3.x requires C++11 features if (NOT CMAKE_CXX_STANDARD) diff --git a/Doxyfile b/Doxyfile index b946742..25c4af6 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.3.1 +PROJECT_NUMBER = 3.3.2 # 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 51b7527..042af01 100644 --- a/include/SQLiteCpp/SQLiteCpp.h +++ b/include/SQLiteCpp/SQLiteCpp.h @@ -41,6 +41,6 @@ * * WARNING: shall always be updated in sync with PROJECT_VERSION in CMakeLists.txt */ -#define SQLITECPP_VERSION "3.03.01" // 3.3.1 -#define SQLITECPP_VERSION_NUMBER 3003001 // 3.3.1 +#define SQLITECPP_VERSION "3.03.02" // 3.3.2 +#define SQLITECPP_VERSION_NUMBER 3003002 // 3.3.2 diff --git a/meson.build b/meson.build index 2aac5cc..5655f04 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ project( # however newer versions of gtest requires C++14 default_options: ['cpp_std=c++14', 'warning_level=3'], license: 'MIT', - version: '3.3.1', + version: '3.3.2', ) cxx = meson.get_compiler('cpp') diff --git a/package.xml b/package.xml index 9d3f51f..065ebf1 100644 --- a/package.xml +++ b/package.xml @@ -1,7 +1,7 @@ SQLiteCpp - 3.3.1 + 3.3.2 A smart and easy to use C++ SQLite3 wrapper. Sébastien Rombauts