Skip to content

Commit 2ec0d73

Browse files
committed
Updating node-db
1 parent 85f111a commit 2ec0d73

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ For more in depth changelog, check the Github Commits:
22

33
https://github.com/mariano/node-db-mysql/commits/master
44

5+
0.6.7
6+
-----
7+
* Throwing exception if Query.execute() is issued without an active connection
8+
59
0.6.6
610
-----
711
* Fixed issue where new connections would throw SEGFAULT on some OSs

lib/node-db

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
, "description" : "MySQL database bindings for Node.JS"
33
, "keywords": ["database","db","native","binding","library","plugin","client","mysql","libmysql"]
44
, "homepage" : "http://nodejsdb.org/db-mysql"
5-
, "version" : "0.6.6"
5+
, "version" : "0.6.7"
66
, "engines" : { "node" : ">=0.4.1" }
77
, "maintainers" :
88
[ { "name": "Mariano Iglesias"

src/connection.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ node_db_mysql::Connection::Connection()
99
timeout(0),
1010
writeTimeout(0),
1111
connection(NULL) {
12+
this->port = 3306;
1213
}
1314

1415
node_db_mysql::Connection::~Connection() {

wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ from os.path import exists
1111

1212
srcdir = "."
1313
blddir = "build"
14-
VERSION = "0.6.6"
14+
VERSION = "0.6.7"
1515

1616
def set_options(opt):
1717
opt.tool_options("compiler_cxx")

0 commit comments

Comments
 (0)