Skip to content

Commit

Permalink
[fix]set default port to 1984, fixes #29
Browse files Browse the repository at this point in the history
  • Loading branch information
apb2006 committed Sep 30, 2021
1 parent 1d6b865 commit 55e1990
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## v1.0.1 - 2021-09-30
- fix default port #29

## v1.0.0 - 2021-09-29
- removed use of Buffer() see #28
- query bind pass type to server #26
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var tagid = 0; // used to give each Session a unique .tag property

var options_default={
host: "127.0.0.1",
port: 8900, // typically 1984
port: 1984, // test on 8900
username: "admin",
password: "admin"
};
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "basex",
"version": "1.0.0",
"version": "1.0.1",
"description": "A BaseX (XML database) client library",
"keywords": [
"xml",
Expand Down

0 comments on commit 55e1990

Please sign in to comment.