mdbx: bump version to 0.1

Change-Id: I31cdcd598c532d1dd96a4aea961495c838ce0b81
This commit is contained in:
Leo Yuriev 2018-03-07 12:10:19 +03:00
parent ad4c5d8972
commit 62f36ea499
2 changed files with 2 additions and 2 deletions

2
mdbx.h
View File

@ -165,7 +165,7 @@ typedef pthread_t mdbx_tid_t;
/*--------------------------------------------------------------------------*/
#define MDBX_VERSION_MAJOR 0
#define MDBX_VERSION_MINOR 0
#define MDBX_VERSION_MINOR 1
#if defined(LIBMDBX_EXPORTS)
#define LIBMDBX_API __dll_export

View File

@ -14,7 +14,7 @@
#include "./bits.h"
#if MDBX_VERSION_MAJOR != 0 || MDBX_VERSION_MINOR != 0
#if MDBX_VERSION_MAJOR != 0 || MDBX_VERSION_MINOR != 1
#error "API version mismatch!"
#endif