We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d6b865 commit 55e1990Copy full SHA for 55e1990
3 files changed
changelog.md
@@ -1,4 +1,7 @@
1
# Changelog
2
+## v1.0.1 - 2021-09-30
3
+- fix default port #29
4
+
5
## v1.0.0 - 2021-09-29
6
- removed use of Buffer() see #28
7
- query bind pass type to server #26
index.js
@@ -30,7 +30,7 @@ var tagid = 0; // used to give each Session a unique .tag property
30
31
var options_default={
32
host: "127.0.0.1",
33
- port: 8900, // typically 1984
+ port: 1984, // test on 8900
34
username: "admin",
35
password: "admin"
36
};
package.json
@@ -1,6 +1,6 @@
{
"name": "basex",
- "version": "1.0.0",
+ "version": "1.0.1",
"description": "A BaseX (XML database) client library",
"keywords": [
"xml",
0 commit comments