diff --git a/.changes/pre.json b/.changes/pre.json index bafd2f058..9e11515f1 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -3,6 +3,7 @@ "changes": [ ".changes/account-recovery.md", ".changes/downgrade-rocksb.md", + ".changes/fix-not-synced-timestamp.md", ".changes/fixNftPrepareOutput.md", ".changes/fixPrepareOutput.md", ".changes/get-incoming-tx.md", @@ -12,6 +13,7 @@ ".changes/nft-options-features.md", ".changes/nft-output-claiming.md", ".changes/nft-outputs-syncing.md", + ".changes/participation-on-account-manager.md", ".changes/prebuild.md", ".changes/private-account-meta.md", ".changes/remove-deleteAccountsAndDatabase.md", @@ -19,6 +21,7 @@ ".changes/syncing.md", ".changes/tagAndMetadataHex.md", ".changes/tx-len-validation.md", - ".changes/uint8array-replace-number-array.md.md" + ".changes/uint8array-replace-number-array.md.md", + ".changes/voting-methods.md" ] } diff --git a/bindings/nodejs/CHANGELOG.md b/bindings/nodejs/CHANGELOG.md index 6211e1a2a..103161fc0 100644 --- a/bindings/nodejs/CHANGELOG.md +++ b/bindings/nodejs/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[2.0.3-rc.8] + +- Fix not synced timestamp issue. + - [de81edaf](https://github.com/iotaledger/wallet.rs/commit/de81edaf20fcc072bd92db3159df03e98352431c) Bump client rev to fix timestamp not synced issue ([#1629](https://github.com/iotaledger/wallet.rs/pull/1629)) on 2022-11-30 +- Added participation methods to the account manager object. + - [4e33d669](https://github.com/iotaledger/wallet.rs/commit/4e33d669e8de0511c3433d3d11a4135c3eef7a31) feat: add participation to account manager nodejs ([#1624](https://github.com/iotaledger/wallet.rs/pull/1624)) on 2022-11-30 +- Added voting methods to the account object. + - [b665af96](https://github.com/iotaledger/wallet.rs/commit/b665af965053762f1ad90c3e1b990922bdc25d0d) feat: add participation to nodejs bindings ([#1616](https://github.com/iotaledger/wallet.rs/pull/1616)) on 2022-11-29 + ## \[2.0.3-rc.7] - Downgrade rocksdb version. diff --git a/bindings/nodejs/package.json b/bindings/nodejs/package.json index 806e36905..94f73a31c 100644 --- a/bindings/nodejs/package.json +++ b/bindings/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "@iota/wallet", - "version": "2.0.3-rc.7", + "version": "2.0.3-rc.8", "description": "Node.js binding to the wallet library", "main": "out/lib/index.js", "types": "out/lib/index.d.ts",