diff --git a/Changelog.txt b/Changelog.txt index f430e33..5580e0a 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,4 +1,8 @@ -Version 2.12 (18. Dec. 2021) +Version 2.13 (26. Aug. 2022) +- Update SQLite to version 3.39.2. +- Update c-blosc to 1.21.2.dev + +Version 2.12 (18. Dec. 2021) - Bugfix: Since V2.7 (SHA-1 d9c3ea5f5536b24fab78b9fc214ce538f8e540ca), compression methods QLIN16 and QLOG16 have no effect (data stored uncompressed). diff --git a/Doxyfile b/Doxyfile index 575cced..883b167 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = mksqlite # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 2.12 +PROJECT_NUMBER = 2.13 # 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/config.h b/config.h index 2443ef6..297deb6 100644 --- a/config.h +++ b/config.h @@ -6,8 +6,8 @@ * @details Configuration file for settings and defaults * @authors Martin Kortmann , * Andreas Martin - * @version 2.12 - * @date 2008-2021 + * @version 2.13 + * @date 2008-2022 * @copyright Distributed under BSD-2 * @pre * @warning @@ -59,7 +59,7 @@ #define MKSQLITE_CONFIG_VERSION_STRING MKSQLITE_VERSION_MAJOR "." MKSQLITE_VERSION_MINOR /**< mksqlite version string */ - #define MKSQLITE_CONFIG_MAX_NUM_OF_DBS 20 ///< maximum number of databases, simultaneous open + #define MKSQLITE_CONFIG_MAX_NUM_OF_DBS 100 ///< maximum number of databases, simultaneous open #define MKSQLITE_CONFIG_CHECK_4_UNIQUE_FIELDS ON ///< ensure unique fields in query return structure by default /// Allow streaming to convert MATLAB variables into byte streams diff --git a/config.h.in b/config.h.in index 30cc2f4..f466ae0 100644 --- a/config.h.in +++ b/config.h.in @@ -6,8 +6,8 @@ * @details Configuration file for settings and defaults * @authors Martin Kortmann , * Andreas Martin - * @version 2.12 - * @date 2008-2021 + * @version 2.13 + * @date 2008-2022 * @copyright Distributed under BSD-2 * @pre * @warning diff --git a/git_revision.h b/git_revision.h index 330e37c..45b93cf 100644 --- a/git_revision.h +++ b/git_revision.h @@ -1,3 +1,3 @@ #define MKSQLITE_VERSION_MAJOR "2" #define MKSQLITE_VERSION_MINOR "12" -#define MKSQLITE_VERSION_STRING "2.12" +#define MKSQLITE_VERSION_STRING "2.13" diff --git a/global.hpp b/global.hpp index 575301f..19b3802 100644 --- a/global.hpp +++ b/global.hpp @@ -6,8 +6,8 @@ * @details * @authors Martin Kortmann , * Andreas Martin - * @version 2.12 - * @date 2008-2021 + * @version 2.13 + * @date 2008-2022 * @copyright Distributed under BSD-2 * @pre * @warning diff --git a/heap_check.hpp b/heap_check.hpp index 0755966..9a8b274 100644 --- a/heap_check.hpp +++ b/heap_check.hpp @@ -6,8 +6,8 @@ * @details Inspired by "Writing Bug-Free C Code" by Jerry Jongerius * @see http://www.duckware.com/index.html * @author Andreas Martin - * @version 2.12 - * @date 2008-2021 + * @version 2.13 + * @date 2008-2022 * @copyright Distributed under BSD-2 * @pre * @warning diff --git a/locale.hpp b/locale.hpp index b5182ae..115a332 100644 --- a/locale.hpp +++ b/locale.hpp @@ -7,8 +7,8 @@ * for the case of further translations. * @authors Martin Kortmann , * Andreas Martin - * @version 2.12 - * @date 2008-2021 + * @version 2.13 + * @date 2008-2022 * @copyright Distributed under BSD-2 * @pre * @warning diff --git a/mksqlite.cpp b/mksqlite.cpp index 413ec83..509ea9e 100644 --- a/mksqlite.cpp +++ b/mksqlite.cpp @@ -6,8 +6,8 @@ * @details class implementations (SQLstack and Mksqlite) * @authors Martin Kortmann , * Andreas Martin - * @version 2.12 - * @date 2008-2021 + * @version 2.13 + * @date 2008-2022 * @copyright Distributed under BSD-2 * @pre * @warning diff --git a/number_compressor.hpp b/number_compressor.hpp index 85be3dc..634896e 100644 --- a/number_compressor.hpp +++ b/number_compressor.hpp @@ -6,8 +6,8 @@ * @details Using "blosc" as lossless compressor and a lossy quantising compressor * @authors Martin Kortmann , * Andreas Martin - * @version 2.12 - * @date 2008-2021 + * @version 2.13 + * @date 2008-2022 * @copyright Distributed under BSD-2 * @pre * @warning diff --git a/serialize.hpp b/serialize.hpp index 6394382..9b2e86b 100644 --- a/serialize.hpp +++ b/serialize.hpp @@ -8,8 +8,8 @@ * @see http://undocumentedmatlab.com/blog/serializing-deserializing-matlab-data * @authors Martin Kortmann , * Andreas Martin - * @version 2.12 - * @date 2008-2021 + * @version 2.13 + * @date 2008-2022 * @copyright Distributed under BSD-2 * @pre * @warning diff --git a/sql_builtin_functions.hpp b/sql_builtin_functions.hpp index a8cb8e3..ce44b1a 100644 --- a/sql_builtin_functions.hpp +++ b/sql_builtin_functions.hpp @@ -7,8 +7,8 @@ * @see http://undocumentedmatlab.com/blog/serializing-deserializing-matlab-data * @authors Martin Kortmann , * Andreas Martin - * @version 2.12 - * @date 2008-2021 + * @version 2.13 + * @date 2008-2022 * @copyright Distributed under BSD-2 * @pre * @warning diff --git a/sql_interface.hpp b/sql_interface.hpp index b0db628..df86e98 100644 --- a/sql_interface.hpp +++ b/sql_interface.hpp @@ -7,8 +7,8 @@ * @see http://undocumentedmatlab.com/blog/serializing-deserializing-matlab-data * @authors Martin Kortmann , * Andreas Martin - * @version 2.12 - * @date 2008-2021 + * @version 2.13 + * @date 2008-2022 * @copyright Distributed under BSD-2 * @pre * @warning diff --git a/typed_blobs.hpp b/typed_blobs.hpp index eda29fa..7a35ad4 100644 --- a/typed_blobs.hpp +++ b/typed_blobs.hpp @@ -6,8 +6,8 @@ * @details * @authors Martin Kortmann , * Andreas Martin - * @version 2.12 - * @date 2008-2021 + * @version 2.13 + * @date 2008-2022 * @copyright Distributed under BSD-2 * @pre * @warning diff --git a/utils.hpp b/utils.hpp index c2ec8e3..e52442f 100644 --- a/utils.hpp +++ b/utils.hpp @@ -8,8 +8,8 @@ * @see http://note.sonots.com/Mex/Matrix.html * @authors Martin Kortmann , * Andreas Martin - * @version 2.12 - * @date 2008-2021 + * @version 2.13 + * @date 2008-2022 * @copyright Distributed under BSD-2 * @pre * @warning diff --git a/value.hpp b/value.hpp index 017d063..2570c92 100644 --- a/value.hpp +++ b/value.hpp @@ -10,8 +10,8 @@ * - ValueSQLCol holding a complete table column * @authors Martin Kortmann , * Andreas Martin - * @version 2.12 - * @date 2008-2021 + * @version 2.13 + * @date 2008-2022 * @copyright Distributed under BSD-2 * @pre * @warning