Skip to content

Commit

Permalink
apply version updates (#1167)
Browse files Browse the repository at this point in the history
Co-authored-by: Thoralf-M <[email protected]>
  • Loading branch information
github-actions[bot] and Thoralf-M authored Aug 1, 2022
1 parent 8e8715c commit a8c1c12
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 47 deletions.
3 changes: 2 additions & 1 deletion .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"changes": [
".changes/buildAndPostBlock.md",
".changes/pow-hrp-renaming.md",
".changes/pre-release.md"
".changes/pre-release.md",
".changes/utxo chain inputs.md"
]
}
4 changes: 4 additions & 0 deletions bindings/nodejs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## \[3.0.0-alpha.2]

- Improve handling for utxo chains in input selection.

## \[3.0.0-alpha.1]

- Rename generateBlock to buildAndPostBlock.
Expand Down
92 changes: 46 additions & 46 deletions bindings/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
{
"name": "@iota/client",
"version": "3.0.0-alpha.1",
"description": "Node.js binding to the client library",
"main": "out/lib/index.js",
"types": "out/lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/iota.rs"
},
"author": "IOTA Foundation <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"cargo-cp-artifact": "^0.1.5",
"@iota/types": "^1.0.0-beta.10",
"prebuild-install": "^5.3.3"
},
"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}",
"install": "prebuild-install --tag-prefix nodejs-binding-v || npm run rebuild",
"build": "npm run build:neon && tsc",
"build:neon": "cargo-cp-artifact -nc ./index.node -- cargo build --release --message-format=json-render-diagnostics",
"rebuild": "npm run build:neon && tsc && node scripts/strip.js",
"prebuild:node": "prebuild --prepack scripts/node-neon-build.js --strip",
"prebuild:electron": "node scripts/electron-prebuild.js",
"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/libraries/nodejs/references/ ./lib/index.ts",
"test": "jest --forceExit"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"dotenv": "^16.0.1",
"electron-build-env": "^0.2.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"jest-matcher-utils": "^28.1.3",
"prebuild": "^10.0.1",
"prettier": "^2.7.1",
"ts-jest": "^27.1.5",
"typedoc": "^0.23.9",
"typedoc-plugin-markdown": "^3.13.4",
"typescript": "^4.7.4"
}
"name": "@iota/client",
"version": "3.0.0-alpha.2",
"description": "Node.js binding to the client library",
"main": "out/lib/index.js",
"types": "out/lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/iota.rs"
},
"author": "IOTA Foundation <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"cargo-cp-artifact": "^0.1.5",
"@iota/types": "^1.0.0-beta.10",
"prebuild-install": "^5.3.3"
},
"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}",
"install": "prebuild-install --tag-prefix nodejs-binding-v || npm run rebuild",
"build": "npm run build:neon && tsc",
"build:neon": "cargo-cp-artifact -nc ./index.node -- cargo build --release --message-format=json-render-diagnostics",
"rebuild": "npm run build:neon && tsc && node scripts/strip.js",
"prebuild:node": "prebuild --prepack scripts/node-neon-build.js --strip",
"prebuild:electron": "node scripts/electron-prebuild.js",
"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/libraries/nodejs/references/ ./lib/index.ts",
"test": "jest --forceExit"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"dotenv": "^16.0.1",
"electron-build-env": "^0.2.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"jest-matcher-utils": "^28.1.3",
"prebuild": "^10.0.1",
"prettier": "^2.7.1",
"ts-jest": "^27.1.5",
"typedoc": "^0.23.9",
"typedoc-plugin-markdown": "^3.13.4",
"typescript": "^4.7.4"
}
}

0 comments on commit a8c1c12

Please sign in to comment.