From 3967b17051de154ece3be56adbd393203179a652 Mon Sep 17 00:00:00 2001 From: Mariano Iglesias Date: Tue, 8 Nov 2011 18:39:22 -0300 Subject: [PATCH] Fixing issue when using the three-argument call on Query::execute() --- CHANGELOG | 4 ++++ lib/node-db | 2 +- package.json | 2 +- wscript | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index ef045cd..e9b8f93 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,10 @@ For more in depth changelog, check the Github Commits: https://github.com/mariano/node-db-drizzle/commits/master +0.7.2 +----- +* Fixing issue when using the three-argument call on Query::execute() + 0.7.1 ----- * Fixing issue where numbers that are part of a string could be treated as pure numbers diff --git a/lib/node-db b/lib/node-db index 5820c6f..cda0172 160000 --- a/lib/node-db +++ b/lib/node-db @@ -1 +1 @@ -Subproject commit 5820c6f8d6194cddc79c135a2cc05b929e6ad9b2 +Subproject commit cda0172951789b2c1c61cec97dd7b55948cbfbff diff --git a/package.json b/package.json index 81018d7..8ce6df6 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ , "description" : "Drizzle database bindings for Node.JS" , "keywords": ["database","db","native","binding","library","plugin","client","drizzle","libdrizzle"] , "homepage" : "http://nodejsdb.org/db-drizzle" -, "version" : "0.7.1" +, "version" : "0.7.2" , "engines" : { "node" : ">=0.4.1" } , "maintainers" : [ { "name": "Mariano Iglesias" diff --git a/wscript b/wscript index a09acc2..a346aa9 100644 --- a/wscript +++ b/wscript @@ -11,7 +11,7 @@ from os.path import exists srcdir = "." blddir = "build" -VERSION = "0.7.1" +VERSION = "0.7.2" def set_options(opt): opt.tool_options("compiler_cxx")