diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | Changelog | 3 | ||||
-rw-r--r-- | src/ejdb/tests/ejdbtest2.c | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c6c6c48..f40827f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ project(${PROJECT_NAME} C) set(PROJECT_VERSION_MAJOR 1) set(PROJECT_VERSION_MINOR 2) -set(PROJECT_VERSION_PATCH 2) +set(PROJECT_VERSION_PATCH 3) set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}) set(${PROJECT_NAME}_VERSION ${PROJECT_VERSION}) set(${PROJECT_NAME}_VERSION_MAJOR ${PROJECT_VERSION_MAJOR}) @@ -1,4 +1,4 @@ -ejdb (1.2.0) testing; urgency=low +ejdb (1.2.3) testing; urgency=low * Moved to the CMake build system * Added negation support for the $elemMatch #109 @@ -7,6 +7,7 @@ ejdb (1.2.0) testing; urgency=low * Added $rename query operators. * Fixed #104 #114 * Implemented $slice operator #14 + * Added ability to do mongo like queries with the distinct operation #93 * Project moved to CMake build system #115 * EJDB shared library changed its name from `tcejdb` to `ejdb` diff --git a/src/ejdb/tests/ejdbtest2.c b/src/ejdb/tests/ejdbtest2.c index 1e2f0dd..49827fd 100644 --- a/src/ejdb/tests/ejdbtest2.c +++ b/src/ejdb/tests/ejdbtest2.c @@ -5525,7 +5525,7 @@ void testDistinct() { EJCOLL *contacts = ejdbcreatecoll(jb, "contacts", NULL); CU_ASSERT_PTR_NOT_NULL_FATAL(contacts); - int count; + uint32_t count; TCXSTR *log; bson *q1res; |