Skip to content

Commit 4e3d36a

Browse files
committed
Release 3.1.1
1 parent a6bb7bc commit 4e3d36a

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,3 +182,7 @@ Version 3.1.0 - August 11 2020
182182
- #286 Add CMake option to toggle stack protection from chrisdalke/master
183183
- #287 Fixed installation on other than Ubuntu distributions from xvitaly/fix-installation
184184
- #288 Allow building of sqlite JSON1 extension when building internal sqlite library from zxey/feature-json1-extension
185+
186+
Version 3.1.1 - August 19 2020
187+
- #292 Fix compilation if using SQLITE_HAS_CODEC from sum01/fix_sqlcipher_compile
188+
- #293 Remove FindSQLiteCpp.cmake from sum01/fix_283

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.1) # for "CMAKE_CXX_STANDARD" version
88
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") # custom CMake modules like FindSQLiteCpp
9-
project(SQLiteCpp VERSION 3.1.0)
9+
project(SQLiteCpp VERSION 3.1.1)
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.1.0
41+
PROJECT_NUMBER = 3.1.1
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
@@ -40,5 +40,5 @@
4040
*
4141
* WARNING: shall always be updated in sync with PROJECT_VERSION in CMakeLists.txt
4242
*/
43-
#define SQLITECPP_VERSION "3.01.00" // 3.1.0
44-
#define SQLITECPP_VERSION_NUMBER 3001001 // 3.1.0
43+
#define SQLITECPP_VERSION "3.01.01" // 3.1.1
44+
#define SQLITECPP_VERSION_NUMBER 3001001 // 3.1.1

0 commit comments

Comments
 (0)