diff --git a/.changes/fix-message-confirmation.md b/.changes/fix-message-confirmation.md deleted file mode 100644 index 55d3cd364..000000000 --- a/.changes/fix-message-confirmation.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"nodejs-binding": patch ---- - -Fixes the message confirmation state update on the background sync system. diff --git a/.changes/get-address.md b/.changes/get-address.md deleted file mode 100644 index b954c6a7e..000000000 --- a/.changes/get-address.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"nodejs-binding": patch ---- - -New method on the Account object to get an address by its bech32 representation. diff --git a/.changes/message-count.md b/.changes/message-count.md deleted file mode 100644 index 9b3287dee..000000000 --- a/.changes/message-count.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"nodejs-binding": patch ---- - -Adds a `messageCount` function on the Account class. diff --git a/bindings/nodejs/CHANGELOG.md b/bindings/nodejs/CHANGELOG.md index c65c6172f..745651c36 100644 --- a/bindings/nodejs/CHANGELOG.md +++ b/bindings/nodejs/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.0.4] + +- Fixes the message confirmation state update on the background sync system. + - [a164f4d](https://github.com/iotaledger/wallet.rs/commit/a164f4d2c844f701744c129aaafb731703a2910f) fix(sync): do not set tx as unconfirmed when the inclusion state is null ([#338](https://github.com/iotaledger/wallet.rs/pull/338)) on 2021-02-19 +- New method on the Account object to get an address by its bech32 representation. + - [0652cd9](https://github.com/iotaledger/wallet.rs/commit/0652cd93c620323026720e43c0510791901ba35c) feat(nodejs): add API to get an address by bech32 string ([#336](https://github.com/iotaledger/wallet.rs/pull/336)) on 2021-02-19 +- Adds a `messageCount` function on the Account class. + - [ed74aaf](https://github.com/iotaledger/wallet.rs/commit/ed74aaf3a8ffe6737b17e86455326811c9e52f76) feat(bindings): add messageCount API ([#340](https://github.com/iotaledger/wallet.rs/pull/340)) on 2021-02-22 + ## [0.0.3] - The balance change event now emits a `{ spent, received }` object with the changed amount instead of the new address balance. diff --git a/bindings/nodejs/package.json b/bindings/nodejs/package.json index f47f0d2ff..ccf27d8c1 100644 --- a/bindings/nodejs/package.json +++ b/bindings/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "@iota/wallet", - "version": "0.0.3", + "version": "0.0.4", "description": "Node.js binding to the wallet library", "main": "lib/index.js", "repository": {