Skip to content

Commit

Permalink
apply version updates (#970)
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 Jul 28, 2023
1 parent fed23ea commit d56d15c
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 65 deletions.
2 changes: 2 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
".changes/clearlistener-move.md",
".changes/computeAlias-NftId.md",
".changes/computeFoundryId.md",
".changes/consolidation-params.md",
".changes/deadlock.md",
".changes/dont-filter-custom-mandatory-inputs.md",
".changes/downgrade-rocksb.md",
Expand Down Expand Up @@ -122,6 +123,7 @@
".changes/signatureUnlock.md",
".changes/stop-background-sync.md",
".changes/stop-background-syncing.md",
".changes/stronghold-2.0.md",
".changes/switch-to-napi-6.md",
".changes/sync-deadlock.md",
".changes/sync.md",
Expand Down
6 changes: 6 additions & 0 deletions bindings/nodejs-old/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.3-rc.42]

- [`5972a23df`](https://github.com/iotaledger/iota-sdk/commit/5972a23dffcde0d10278006af9625914a907419b)([#845](https://github.com/iotaledger/iota-sdk/pull/845)) Add `ConsolidationParams`.
`Account::consolidateOutputs` take `ConsolidationParams`.
- [`9b5adfb23`](https://github.com/iotaledger/iota-sdk/commit/9b5adfb236ec74192f99f4a1e3c9c7398b83153a)([#957](https://github.com/iotaledger/iota-sdk/pull/957)) Bump stronghold to 2.0.

## \[2.0.3-rc.41]

- [`feef5577`](https://github.com/iotaledger/iota-sdk/commit/feef557757f4b6ad6d4e4a9a57b1b692387eb7ea)([#816](https://github.com/iotaledger/iota-sdk/pull/816)) Add `TransactionProgressWalletEvent::getProgress` method.
Expand Down
130 changes: 65 additions & 65 deletions bindings/nodejs-old/package.json
Original file line number Diff line number Diff line change
@@ -1,67 +1,67 @@
{
"name": "@iota/wallet",
"version": "2.0.3-rc.41",
"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 --profile=production --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",
"tough-cookie": "^4.1.3",
"semver": "^7.5.2",
"word-wrap": "^1.2.4"
},
"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.42",
"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 --profile=production --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",
"tough-cookie": "^4.1.3",
"semver": "^7.5.2",
"word-wrap": "^1.2.4"
},
"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 d56d15c

Please sign in to comment.