Skip to content

Commit

Permalink
Version 2.13 (26. Aug. 2022)
Browse files Browse the repository at this point in the history
- Update SQLite to version 3.39.2.
- Update c-blosc to 1.21.2.dev
  • Loading branch information
a-ma72 committed Aug 26, 2022
1 parent 67245af commit fcc5b83
Show file tree
Hide file tree
Showing 16 changed files with 34 additions and 30 deletions.
6 changes: 5 additions & 1 deletion Changelog.txt
Original file line number Diff line number Diff line change
@@ -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).
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 = 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
Expand Down
6 changes: 3 additions & 3 deletions config.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
* @details Configuration file for settings and defaults
* @authors Martin Kortmann <mail@kortmann.de>,
* Andreas Martin <andimartin@users.sourceforge.net>
* @version 2.12
* @date 2008-2021
* @version 2.13
* @date 2008-2022
* @copyright Distributed under BSD-2
* @pre
* @warning
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
* @details Configuration file for settings and defaults
* @authors Martin Kortmann <mail@kortmann.de>,
* Andreas Martin <andimartin@users.sourceforge.net>
* @version 2.12
* @date 2008-2021
* @version 2.13
* @date 2008-2022
* @copyright Distributed under BSD-2
* @pre
* @warning
Expand Down
2 changes: 1 addition & 1 deletion git_revision.h
Original file line number Diff line number Diff line change
@@ -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"
4 changes: 2 additions & 2 deletions global.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
* @details
* @authors Martin Kortmann <mail@kortmann.de>,
* Andreas Martin <andimartin@users.sourceforge.net>
* @version 2.12
* @date 2008-2021
* @version 2.13
* @date 2008-2022
* @copyright Distributed under BSD-2
* @pre
* @warning
Expand Down
4 changes: 2 additions & 2 deletions heap_check.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 <andimartin@users.sourceforge.net>
* @version 2.12
* @date 2008-2021
* @version 2.13
* @date 2008-2022
* @copyright Distributed under BSD-2
* @pre
* @warning
Expand Down
4 changes: 2 additions & 2 deletions locale.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
* for the case of further translations.
* @authors Martin Kortmann <mail@kortmann.de>,
* Andreas Martin <andimartin@users.sourceforge.net>
* @version 2.12
* @date 2008-2021
* @version 2.13
* @date 2008-2022
* @copyright Distributed under BSD-2
* @pre
* @warning
Expand Down
4 changes: 2 additions & 2 deletions mksqlite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
* @details class implementations (SQLstack and Mksqlite)
* @authors Martin Kortmann <mail@kortmann.de>,
* Andreas Martin <andimartin@users.sourceforge.net>
* @version 2.12
* @date 2008-2021
* @version 2.13
* @date 2008-2022
* @copyright Distributed under BSD-2
* @pre
* @warning
Expand Down
4 changes: 2 additions & 2 deletions number_compressor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
* @details Using "blosc" as lossless compressor and a lossy quantising compressor
* @authors Martin Kortmann <mail@kortmann.de>,
* Andreas Martin <andimartin@users.sourceforge.net>
* @version 2.12
* @date 2008-2021
* @version 2.13
* @date 2008-2022
* @copyright Distributed under BSD-2
* @pre
* @warning
Expand Down
4 changes: 2 additions & 2 deletions serialize.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
* @see http://undocumentedmatlab.com/blog/serializing-deserializing-matlab-data
* @authors Martin Kortmann <mail@kortmann.de>,
* Andreas Martin <andimartin@users.sourceforge.net>
* @version 2.12
* @date 2008-2021
* @version 2.13
* @date 2008-2022
* @copyright Distributed under BSD-2
* @pre
* @warning
Expand Down
4 changes: 2 additions & 2 deletions sql_builtin_functions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
* @see http://undocumentedmatlab.com/blog/serializing-deserializing-matlab-data
* @authors Martin Kortmann <mail@kortmann.de>,
* Andreas Martin <andimartin@users.sourceforge.net>
* @version 2.12
* @date 2008-2021
* @version 2.13
* @date 2008-2022
* @copyright Distributed under BSD-2
* @pre
* @warning
Expand Down
4 changes: 2 additions & 2 deletions sql_interface.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
* @see http://undocumentedmatlab.com/blog/serializing-deserializing-matlab-data
* @authors Martin Kortmann <mail@kortmann.de>,
* Andreas Martin <andimartin@users.sourceforge.net>
* @version 2.12
* @date 2008-2021
* @version 2.13
* @date 2008-2022
* @copyright Distributed under BSD-2
* @pre
* @warning
Expand Down
4 changes: 2 additions & 2 deletions typed_blobs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
* @details
* @authors Martin Kortmann <mail@kortmann.de>,
* Andreas Martin <andimartin@users.sourceforge.net>
* @version 2.12
* @date 2008-2021
* @version 2.13
* @date 2008-2022
* @copyright Distributed under BSD-2
* @pre
* @warning
Expand Down
4 changes: 2 additions & 2 deletions utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
* @see http://note.sonots.com/Mex/Matrix.html
* @authors Martin Kortmann <mail@kortmann.de>,
* Andreas Martin <andimartin@users.sourceforge.net>
* @version 2.12
* @date 2008-2021
* @version 2.13
* @date 2008-2022
* @copyright Distributed under BSD-2
* @pre
* @warning
Expand Down
4 changes: 2 additions & 2 deletions value.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
* - ValueSQLCol holding a complete table column
* @authors Martin Kortmann <mail@kortmann.de>,
* Andreas Martin <andimartin@users.sourceforge.net>
* @version 2.12
* @date 2008-2021
* @version 2.13
* @date 2008-2022
* @copyright Distributed under BSD-2
* @pre
* @warning
Expand Down

0 comments on commit fcc5b83

Please sign in to comment.