Skip to content

Commit 6c637cd

Browse files
authored
Merge pull request #20 from codenotary/feat/improve-sql-results
Improve messages from methods - SQLExec - SQLQuery - SQLListTables
2 parents 0b4c90f + 63eae50 commit 6c637cd

File tree

6 files changed

+177
-165
lines changed

6 files changed

+177
-165
lines changed

DEPLOY.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
1. create the version branch
2+
2. update package.json with the correct version
3+
3. merge the version branch to master (do not delete the branch)
4+
4. create the release in GH
5+
5. release in GH
6+
6. npm publish from the CLI

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
## Introduction
2929

30-
immudb-node implements a [grpc] immudb client. A minimalist API is exposed for applications while cryptographic verifications and state update protocol implementation are fully implemented by this client. Latest validated immudb state may be keep in the local filesystem when initialising the client with the rootPath option, please read [immudb research paper] for details of how immutability is ensured by [immudb].
30+
immudb-node implements a [grpc] immudb client. A minimalist API is exposed for applications while cryptographic verifications and state update protocol implementation are fully implemented by this client. Latest validated immudb state may be kept in the local filesystem when initialising the client with the rootPath option. Please read [immudb research paper] for details on how immutability is ensured by [immudb].
3131

3232
[grpc]: https://grpc.io/
3333
[immudb research paper]: https://immudb.io/
@@ -49,7 +49,7 @@ const ImmudbClient = require('immudb-node')
4949

5050
immudb-node supports the [latest immudb release].
5151

52-
[latest immudb release]: https://github.com/codenotary/immudb/releases/tag/v0.9.1
52+
[latest immudb release]: https://github.com/codenotary/immudb/releases/latest
5353

5454
## Quickstart
5555

@@ -139,8 +139,8 @@ cl.useDatabase('db1')
139139
### Traditional read and write
140140

141141
immudb provides read and write operations that behave as a traditional
142-
key-value store i.e. no cryptographic verification is done. This operations
143-
may be used when validations can be post-poned:
142+
key-value store i.e. no cryptographic verification is done. These operations
143+
may be used when validating can be postponed:
144144

145145
```
146146
let res = await cl.set({ key: 'key1', value: 'value1' })

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "immudb-node",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Node.js SDK for immudb written in TypeScript",
55
"directories": {
66
"src": "src",

0 commit comments

Comments
 (0)