Skip to content

Commit

Permalink
Release v10.0.0-soroban.7 (#674)
Browse files Browse the repository at this point in the history
* Bump version and dependencies
  • Loading branch information
Shaptic authored Aug 12, 2023
1 parent 650d3db commit 3e68183
Show file tree
Hide file tree
Showing 3 changed files with 240 additions and 265 deletions.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stellar-base",
"version": "10.0.0-soroban.6",
"version": "10.0.0-soroban.7",
"description": "Low-level support library for the Stellar network.",
"main": "./lib/index.js",
"browser": {
Expand Down Expand Up @@ -70,23 +70,23 @@
},
"homepage": "https://github.com/stellar/js-stellar-base",
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@babel/eslint-plugin": "^7.19.1",
"@babel/preset-env": "^7.22.9",
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/eslint-parser": "^7.22.10",
"@babel/eslint-plugin": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/register": "^7.21.0",
"@definitelytyped/dtslint": "^0.0.165",
"@istanbuljs/nyc-config-babel": "3.0.0",
"@types/node": "^20.4.7",
"@typescript-eslint/parser": "^6.2.1",
"@types/node": "^20.4.10",
"@typescript-eslint/parser": "^6.3.0",
"babel-loader": "^9.1.3",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-import": "^0.0.1",
Expand Down
5 changes: 4 additions & 1 deletion src/transaction_builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,10 @@ export class TransactionBuilder {
return this;
}

/** Removes the operations from the builder (useful when cloning). */
/**
* Removes the operations from the builder (useful when cloning).
* @returns {TransactionBuilder} this builder instance
*/
clearOperations() {
this.operations = [];
return this;
Expand Down
Loading

0 comments on commit 3e68183

Please sign in to comment.