mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-06 02:36:04 -04:00
Release 3.2.1
Bugfixes and cmake/meson build system fixes only
This commit is contained in:
parent
833f007a0b
commit
bd5bf7996a
13
CHANGELOG.md
13
CHANGELOG.md
@ -215,3 +215,16 @@ Version 3.2.0 - 2022 Septembre 18
|
||||
- #364 Removal of remaining long APIs from SRombauts/convert-remaining-long-types
|
||||
- #366 Add vcpkg installation instructions from FrankXie05/vcpkg-instructions
|
||||
- #360 Small improvements and code cleaning from Kacperos155/small_improvements
|
||||
|
||||
Versions 3.2.1 - 2022 Decembre 12
|
||||
- Merge pull request #383 Update SQLite from 3.39.3 to 3.40.0 (2022-11-16) from SRombauts/update-sqlite-340
|
||||
- Merge pull request #370 Don't link anymore with Visual Studio's static runtime by default from SRombauts/dont-enforce-static-linking
|
||||
- Merge pull request #371 from SRombauts/appveyor-vs-2022
|
||||
- Merge pull request #277 from cuberite/cmake-scoping
|
||||
- Merge pull request #374 Update googletest from vuhailongkl97/master
|
||||
- Merge pull request #377 Some documentation fixes from cbielow/fix_doc
|
||||
- Merge pull request #380 [Meson] fixes for meson project from ninjaoflight/windows-support
|
||||
- Merge pull request #387 Ensure that TEXT column is UTF-8 encoded before using sqlite3_column_blob() from dougnazar
|
||||
- Merge pull request #385 disable SQLITECPP_USE_STACK_PROTECTION when on MinGW from SRombauts/mingw-disable-stack-protection
|
||||
- Merge pull request #386 [meson] Update SQLite from 3.39.3 to 3.40.0 from ninjaoflight/sqlite-meson-update
|
||||
- Merge pull request #389 [meson] add missing compile options from ninjaoflight/meson-fixes
|
||||
|
@ -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.0)
|
||||
project(SQLiteCpp VERSION 3.2.1)
|
||||
|
||||
# SQLiteC++ 3.x requires C++11 features
|
||||
if (NOT CMAKE_CXX_STANDARD)
|
||||
|
2
Doxyfile
2
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.0
|
||||
PROJECT_NUMBER = 3.2.1
|
||||
|
||||
# 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
|
||||
|
@ -40,5 +40,5 @@
|
||||
*
|
||||
* WARNING: shall always be updated in sync with PROJECT_VERSION in CMakeLists.txt
|
||||
*/
|
||||
#define SQLITECPP_VERSION "3.02.00" // 3.2.0
|
||||
#define SQLITECPP_VERSION_NUMBER 3002000 // 3.2.0
|
||||
#define SQLITECPP_VERSION "3.02.01" // 3.2.1
|
||||
#define SQLITECPP_VERSION_NUMBER 3002001 // 3.2.1
|
||||
|
Loading…
x
Reference in New Issue
Block a user