Skip to content

Commit

Permalink
Update project version to 3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SRombauts committed Aug 16, 2024
1 parent cc9e062 commit 31463a9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions include/SQLiteCpp/SQLiteCpp.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>SQLiteCpp</name>
<version>3.3.1</version>
<version>3.3.2</version>
<description>A smart and easy to use C++ SQLite3 wrapper.</description>

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

0 comments on commit 31463a9

Please sign in to comment.