Skip to content

Commit

Permalink
apply version updates (#628)
Browse files Browse the repository at this point in the history
Co-authored-by: thibault-martinez <[email protected]>
  • Loading branch information
github-actions[bot] and thibault-martinez authored Jun 19, 2023
1 parent c4231e5 commit a1c2810
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 62 deletions.
4 changes: 4 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
".changes/build-fix.md",
".changes/burn-interface.md",
".changes/burn-native-tokens.md",
".changes/claimable-outputs.md",
".changes/claimoutputs.md",
".changes/clearlistener-move.md",
".changes/computeAlias-NftId.md",
Expand All @@ -46,6 +47,7 @@
".changes/fix-participation-function-enum-variant.md",
".changes/fix-rebuild-script.md",
".changes/fix-use-correct-sync-options.md",
".changes/fix-windows-arm64.md",
".changes/fixNftPrepareOutput.md",
".changes/fixPrepareOutput.md",
".changes/generate-ed25519-evm-addresses.md",
Expand Down Expand Up @@ -107,6 +109,7 @@
".changes/sdr-prepare-output.md",
".changes/send-params.md",
".changes/sign-evm.md",
".changes/sign-secp256k1_ecdsa.md",
".changes/sign-verify-ed25519.md",
".changes/signature-unlock.md",
".changes/signatureUnlock.md",
Expand All @@ -125,6 +128,7 @@
".changes/unlock-inputs.md",
".changes/updateNodeAuth.md",
".changes/use-new-isa.md",
".changes/verify-signatures.md",
".changes/voting-methods.md",
".changes/voting-output-input-selection.md",
".changes/voting-output-mandatory.md",
Expand Down
7 changes: 7 additions & 0 deletions sdk/src/wallet/bindings/nodejs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[2.0.3-rc.37]

- [`d90db186`](https://github.com/iotaledger/iota-sdk/commit/d90db186e670d63ab22b4bf2ecc573d52c4e6177)([#613](https://github.com/iotaledger/iota-sdk/pull/613)) Rename `Account::getOutputsWithAdditionalUnlockConditions` to `claimableOutputs`.
- [`a454328b`](https://github.com/iotaledger/iota-sdk/commit/a454328b6a4ade6b8247ae7ed1c92f64e22befe3)([#574](https://github.com/iotaledger/iota-sdk/pull/574)) Manually download windows arm64 build.
- [`17097e33`](https://github.com/iotaledger/iota-sdk/commit/17097e33b4abc3f1c04325365da718378a223076)([#610](https://github.com/iotaledger/iota-sdk/pull/610)) Rename `Account::signEvm` to `signSecp256k1Ecdsa` and `EvmSignature` to `Secp256k1EcdsaSignature`.
- [`c4231e55`](https://github.com/iotaledger/iota-sdk/commit/c4231e5559b44add98659aac3de3f2f53786a569)([#595](https://github.com/iotaledger/iota-sdk/pull/595)) Add `Account::verifyEd25519Signature` and `verifySecp256k1EcdsaSignature` methods. Add `Secp256k1EcdsaSignature` to types.

## \[2.0.3-rc.36]

- [`43fed82c`](https://github.com/iotaledger/iota-sdk/commit/43fed82ce5d11fc6da0003565c44f10843165a32)([#498](https://github.com/iotaledger/iota-sdk/pull/498)) Rename `AccountBalance` to `Balance`.
Expand Down
124 changes: 62 additions & 62 deletions sdk/src/wallet/bindings/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,64 +1,64 @@
{
"name": "@iota/wallet",
"version": "2.0.3-rc.36",
"description": "Node.js binding to the wallet library",
"main": "out/lib/index.js",
"types": "out/lib/index.d.ts",
"scripts": {
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"format": "prettier --ignore-path .eslintignore -w \"{,*/**/}*.{ts,js,json}\"",
"format-check": "prettier --ignore-path .eslintignore -c \"{,*/**/}*.{ts,js,json}\"",
"build": "node scripts/neon-build && tsc",
"build:neon": "cargo-cp-artifact -ac iota-wallet-nodejs ./index.node -- cargo build --release --message-format=json-render-diagnostics",
"docs-wiki-build": "typedoc --githubPages false --disableSources --excludePrivate --excludeInternal --excludeNotDocumented --plugin typedoc-plugin-markdown --theme markdown --hideBreadcrumbs --entryDocument api_ref.md --readme none --hideGenerator --sort source-order --exclude ./**/src/index.ts --out ../../documentation/docs/references/nodejs ./lib/index.ts ",
"prebuild-x64": "prebuild --runtime napi --target 6 --prepack scripts/neon-build.js --strip --arch x64",
"prebuild-arm64": "prebuild --runtime napi --target 6 --prepack scripts/neon-build.js --strip --arch arm64",
"rebuild": "node scripts/neon-build && tsc && node scripts/strip.js",
"install": "prebuild-install --runtime napi --tag-prefix='wallet-nodejs-binding-v' && tsc || npm run rebuild",
"test": "jest --forceExit"
},
"author": "IOTA Foundation <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@iota/types": "^1.0.0-beta.15",
"cargo-cp-artifact": "^0.1.6",
"prebuild-install": "^7.1.1",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"electron-build-env": "^0.2.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.4.2",
"prebuild": "^11.0.4",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.24",
"typedoc-plugin-markdown": "^3.14.0"
},
"overrides": {
"tar@<=4.4.17": "^4.4.19",
"[email protected]": "^4.4.19",
"[email protected]": "^2.8.2"
},
"resolutions": {
"tar": "^4.4.19",
"simple-get": "^2.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iotaledger/iota-sdk.git"
},
"binary": {
"napi_versions": [
6
]
},
"bugs": {
"url": "https://github.com/iotaledger/iota-sdk/issues"
},
"homepage": "https://github.com/iotaledger/iota-sdk#readme"
"name": "@iota/wallet",
"version": "2.0.3-rc.37",
"description": "Node.js binding to the wallet library",
"main": "out/lib/index.js",
"types": "out/lib/index.d.ts",
"scripts": {
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"format": "prettier --ignore-path .eslintignore -w \"{,*/**/}*.{ts,js,json}\"",
"format-check": "prettier --ignore-path .eslintignore -c \"{,*/**/}*.{ts,js,json}\"",
"build": "node scripts/neon-build && tsc",
"build:neon": "cargo-cp-artifact -ac iota-wallet-nodejs ./index.node -- cargo build --release --message-format=json-render-diagnostics",
"docs-wiki-build": "typedoc --githubPages false --disableSources --excludePrivate --excludeInternal --excludeNotDocumented --plugin typedoc-plugin-markdown --theme markdown --hideBreadcrumbs --entryDocument api_ref.md --readme none --hideGenerator --sort source-order --exclude ./**/src/index.ts --out ../../documentation/docs/references/nodejs ./lib/index.ts ",
"prebuild-x64": "prebuild --runtime napi --target 6 --prepack scripts/neon-build.js --strip --arch x64",
"prebuild-arm64": "prebuild --runtime napi --target 6 --prepack scripts/neon-build.js --strip --arch arm64",
"rebuild": "node scripts/neon-build && tsc && node scripts/strip.js",
"install": "prebuild-install --runtime napi --tag-prefix='wallet-nodejs-binding-v' && tsc || npm run rebuild",
"test": "jest --forceExit"
},
"author": "IOTA Foundation <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@iota/types": "^1.0.0-beta.15",
"cargo-cp-artifact": "^0.1.6",
"prebuild-install": "^7.1.1",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"electron-build-env": "^0.2.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.4.2",
"prebuild": "^11.0.4",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.24",
"typedoc-plugin-markdown": "^3.14.0"
},
"overrides": {
"tar@<=4.4.17": "^4.4.19",
"[email protected]": "^4.4.19",
"[email protected]": "^2.8.2"
},
"resolutions": {
"tar": "^4.4.19",
"simple-get": "^2.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iotaledger/iota-sdk.git"
},
"binary": {
"napi_versions": [
6
]
},
"bugs": {
"url": "https://github.com/iotaledger/iota-sdk/issues"
},
"homepage": "https://github.com/iotaledger/iota-sdk#readme"
}

0 comments on commit a1c2810

Please sign in to comment.