summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Adamansky <adamansky@gmail.com>2015-04-15 18:49:36 +0600
committerAnton Adamansky <adamansky@gmail.com>2015-04-15 18:49:36 +0600
commit041d84705a5bdfd05e8351b2eacf2f9ad7b35843 (patch)
tree45f1fc8a77af7ed3008ec5a777e2f3d2c7f612f1
parentbc5d7a156c8710f1cc3b6109604b45f38a24d246 (diff)
downloadejdb-041d84705a5bdfd05e8351b2eacf2f9ad7b35843.tar.gz
ejdb-041d84705a5bdfd05e8351b2eacf2f9ad7b35843.tar.bz2
ejdb-041d84705a5bdfd05e8351b2eacf2f9ad7b35843.zip
v1.2.6
-rw-r--r--Changelog10
-rw-r--r--cmake/Modules/Win32LIBTools.cmake4
2 files changed, 11 insertions, 3 deletions
diff --git a/Changelog b/Changelog
index 701190e..75a08a1 100644
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,12 @@
-ejdb (1.2.5) testing; urgency=medium
+ejdb (1.2.6) testing; urgency=low
+
+ * Fix: $addToSet works improperly for non existent nested keys #123
+ * Fix: Queries of int64_t (longs) on Windows is returning invalid results #127
+ * Fix: Cross compile EJDB for MIPS fails #125
+
+ -- Anton Adamansky <adamansky@gmail.com> Wed, 15 Apr 2015 10:24:43 +0600
+
+ejdb (1.2.5) testing; urgency=low
* Build fixes for OSX #121 #122
diff --git a/cmake/Modules/Win32LIBTools.cmake b/cmake/Modules/Win32LIBTools.cmake
index 6329414..0dcf437 100644
--- a/cmake/Modules/Win32LIBTools.cmake
+++ b/cmake/Modules/Win32LIBTools.cmake
@@ -4,13 +4,13 @@ endif()
find_program(WINTOOLS_WINE_EXEC wine)
if (NOT WINTOOLS_WINE_EXEC)
- message("Wine executable not found! Failed to initiate wintoole staff.")
+ message("Wine executable not found! Failed to initiate wintools staff.")
return()
endif()
find_program(WINTOOLS_WGET_EXEC wget)
if (NOT WINTOOLS_WGET_EXEC)
- message("Wget executable not found! Failed to initiate wintoole staff.")
+ message("Wget executable not found! Failed to initiate wintools staff.")
return()
endif()