Skip to content

Commit 31463a9

Browse files
committed
Update project version to 3.3.2
1 parent cc9e062 commit 31463a9

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

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.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

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.01" // 3.3.1
45-
#define SQLITECPP_VERSION_NUMBER 3003001 // 3.3.1
44+
#define SQLITECPP_VERSION "3.03.02" // 3.3.2
45+
#define SQLITECPP_VERSION_NUMBER 3003002 // 3.3.2
4646

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project(
44
# however newer versions of gtest requires C++14
55
default_options: ['cpp_std=c++14', 'warning_level=3'],
66
license: 'MIT',
7-
version: '3.3.1',
7+
version: '3.3.2',
88
)
99

1010
cxx = meson.get_compiler('cpp')

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.1</version>
4+
<version>3.3.2</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)