Skip to content

Commit

Permalink
v0.3.0 (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuinnLee authored Mar 4, 2022
1 parent 60241e3 commit 7ea01cd
Show file tree
Hide file tree
Showing 38 changed files with 243 additions and 55 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2022-03-04)


### Bug Fixes

* move testcase to dev dependency ([#125](https://github.com/FuelLabs/fuels-ts/issues/125)) ([ca89791](https://github.com/FuelLabs/fuels-ts/commit/ca89791ccef1287f7ccc6411bf1b290fbcac4315))
* node14 uses npm7, upgrade to npm8 ([#149](https://github.com/FuelLabs/fuels-ts/issues/149)) ([66f2519](https://github.com/FuelLabs/fuels-ts/commit/66f25194e10ba926f68babdd894bb4b8f30f2f8e))
* setup-node@v2 now creates the .npmrc ([#148](https://github.com/FuelLabs/fuels-ts/issues/148)) ([f52bb15](https://github.com/FuelLabs/fuels-ts/commit/f52bb15d3575bafbfead6961fa6d61ec9794c649))
* Throttle npm whoami ([#150](https://github.com/FuelLabs/fuels-ts/issues/150)) ([60241e3](https://github.com/FuelLabs/fuels-ts/commit/60241e373567d3eb897fa213b3c6f28478db3907))


### Features

* add coin status on coins ([#129](https://github.com/FuelLabs/fuels-ts/issues/129)) ([ed80835](https://github.com/FuelLabs/fuels-ts/commit/ed808352347d5deac0a683d007632cae09df8692))
* add HDWallet implementation BIP-032 + BIP-044 ([#143](https://github.com/FuelLabs/fuels-ts/issues/143)) ([f7de3dc](https://github.com/FuelLabs/fuels-ts/commit/f7de3dc5d377682d880fa69496eaf93502c43c9e))
* add Provider.getCoinsToSpend() ([#93](https://github.com/FuelLabs/fuels-ts/issues/93)) ([4bff768](https://github.com/FuelLabs/fuels-ts/commit/4bff76855b413f10eaffa4d631b5ffb79306e767))
* add sendTransaction with signature ([#111](https://github.com/FuelLabs/fuels-ts/issues/111)) ([756d35d](https://github.com/FuelLabs/fuels-ts/commit/756d35d347d12160b18f1d93cd61211695074362))
* config provider at generate wallet ([#128](https://github.com/FuelLabs/fuels-ts/issues/128)) ([4932c81](https://github.com/FuelLabs/fuels-ts/commit/4932c8146506b0736af5748c12d904fda2673e1f))
* generate docs ([#116](https://github.com/FuelLabs/fuels-ts/issues/116)) ([84ac1c7](https://github.com/FuelLabs/fuels-ts/commit/84ac1c79c5e75bd1a39466f2d4e518c17c1304b4))
* zero out output fields on hashTransaction ([#110](https://github.com/FuelLabs/fuels-ts/issues/110)) ([b018ede](https://github.com/FuelLabs/fuels-ts/commit/b018edecf2acde4582631003074dc0742c0a52e0))
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"packages": [
"packages/*"
],
"version": "0.0.1"
"version": "0.3.0"
}
8 changes: 8 additions & 0 deletions packages/abi-coder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2022-03-04)

**Note:** Version bump only for package @fuel-ts/abi-coder
2 changes: 1 addition & 1 deletion packages/abi-coder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/abi-coder",
"version": "0.0.1",
"version": "0.3.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"typedocMain": "src/index.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/contract/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2022-03-04)

**Note:** Version bump only for package @fuel-ts/contract
8 changes: 4 additions & 4 deletions packages/contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/contract",
"version": "0.0.1",
"version": "0.3.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"typedocMain": "src/index.ts",
Expand All @@ -16,8 +16,8 @@
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@fuel-ts/abi-coder": "^0.0.1",
"@fuel-ts/providers": "^0.0.1",
"@fuel-ts/transactions": "^0.0.1"
"@fuel-ts/abi-coder": "0.3.0",
"@fuel-ts/providers": "0.3.0",
"@fuel-ts/transactions": "0.3.0"
}
}
8 changes: 8 additions & 0 deletions packages/example-contract/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2022-03-04)

**Note:** Version bump only for package @fuel-ts/example-contract
8 changes: 4 additions & 4 deletions packages/example-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/example-contract",
"version": "0.0.1",
"version": "0.3.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"scripts": {
Expand All @@ -9,11 +9,11 @@
"license": "Apache-2.0",
"dependencies": {
"@ethersproject/bytes": "^5.5.0",
"fuels": "^0.0.1"
"fuels": "0.3.0"
},
"devDependencies": {
"typechain-target-fuels": "^0.0.1",
"prettier": "^2.4.1",
"typechain": "^6.0.2"
"typechain": "^6.0.2",
"typechain-target-fuels": "0.3.0"
}
}
8 changes: 8 additions & 0 deletions packages/fuels/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2022-03-04)

**Note:** Version bump only for package fuels
12 changes: 6 additions & 6 deletions packages/fuels/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fuels",
"version": "0.0.1",
"version": "0.3.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"typedocMain": "src/index.ts",
Expand All @@ -10,10 +10,10 @@
],
"license": "Apache-2.0",
"dependencies": {
"@fuel-ts/abi-coder": "^0.0.1",
"@fuel-ts/contract": "^0.0.1",
"@fuel-ts/providers": "^0.0.1",
"@fuel-ts/transactions": "^0.0.1",
"@fuel-ts/wallet": "^0.0.1"
"@fuel-ts/abi-coder": "0.3.0",
"@fuel-ts/contract": "0.3.0",
"@fuel-ts/providers": "0.3.0",
"@fuel-ts/transactions": "0.3.0",
"@fuel-ts/wallet": "0.3.0"
}
}
10 changes: 10 additions & 0 deletions packages/hasher/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2022-03-04)

### Features

- add HDWallet implementation BIP-032 + BIP-044 ([#143](https://github.com/FuelLabs/fuels-ts/issues/143)) ([f7de3dc](https://github.com/FuelLabs/fuels-ts/commit/f7de3dc5d377682d880fa69496eaf93502c43c9e))
10 changes: 5 additions & 5 deletions packages/hasher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/hasher",
"version": "0.0.1",
"version": "0.3.0",
"description": "Sha256 hash utility for Fuel",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"typedocMain": "./src/index.ts",
Expand All @@ -13,12 +13,12 @@
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/sha2": "^5.5.0",
"@fuel-ts/providers": "^0.0.1",
"@fuel-ts/transactions": "^0.0.1",
"@fuel-ts/providers": "0.3.0",
"@fuel-ts/transactions": "0.3.0",
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
"@types/lodash.clonedeep": "^4.5.6",
"@fuel-ts/testcases": "^0.0.1"
"@fuel-ts/testcases": "0.3.0",
"@types/lodash.clonedeep": "^4.5.6"
}
}
10 changes: 10 additions & 0 deletions packages/hdwallet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2022-03-04)

### Features

- add HDWallet implementation BIP-032 + BIP-044 ([#143](https://github.com/FuelLabs/fuels-ts/issues/143)) ([f7de3dc](https://github.com/FuelLabs/fuels-ts/commit/f7de3dc5d377682d880fa69496eaf93502c43c9e))
6 changes: 3 additions & 3 deletions packages/hdwallet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/hdwallet",
"version": "0.0.1",
"version": "0.3.0",
"description": "The Hierarchal Desterministic (HD) Wallet",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"typedocMain": "./src/index.ts",
Expand All @@ -14,7 +14,7 @@
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/sha2": "^5.5.0",
"@fuel-ts/mnemonic": "^0.0.1",
"@fuel-ts/signer": "^0.0.1"
"@fuel-ts/mnemonic": "0.3.0",
"@fuel-ts/signer": "0.3.0"
}
}
8 changes: 8 additions & 0 deletions packages/merkle-shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2022-03-04)

**Note:** Version bump only for package @fuel-ts/merkle-shared
2 changes: 1 addition & 1 deletion packages/merkle-shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/merkle-shared",
"version": "0.0.1",
"version": "0.3.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "index.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/merkle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2022-03-04)

**Note:** Version bump only for package @fuel-ts/merkle
4 changes: 2 additions & 2 deletions packages/merkle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/merkle",
"version": "0.0.1",
"version": "0.3.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"typedocMain": "src/index.ts",
Expand All @@ -10,6 +10,6 @@
],
"license": "Apache-2.0",
"dependencies": {
"@fuel-ts/merkle-shared": "^0.0.1"
"@fuel-ts/merkle-shared": "0.3.0"
}
}
8 changes: 8 additions & 0 deletions packages/merklesum/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2022-03-04)

**Note:** Version bump only for package @fuel-ts/merklesum
4 changes: 2 additions & 2 deletions packages/merklesum/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/merklesum",
"version": "0.0.1",
"version": "0.3.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"typedocMain": "src/index.ts",
Expand All @@ -11,6 +11,6 @@
"license": "Apache-2.0",
"dependencies": {
"@ethersproject/bignumber": "^5.4.2",
"@fuel-ts/merkle-shared": "^0.0.1"
"@fuel-ts/merkle-shared": "0.3.0"
}
}
10 changes: 10 additions & 0 deletions packages/mnemonic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2022-03-04)

### Features

- add HDWallet implementation BIP-032 + BIP-044 ([#143](https://github.com/FuelLabs/fuels-ts/issues/143)) ([f7de3dc](https://github.com/FuelLabs/fuels-ts/commit/f7de3dc5d377682d880fa69496eaf93502c43c9e))
4 changes: 2 additions & 2 deletions packages/mnemonic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/mnemonic",
"version": "0.0.1",
"version": "0.3.0",
"description": "Mnemonic implementation from BIP39",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"typedocMain": "./src/index.ts",
Expand All @@ -15,6 +15,6 @@
"@ethersproject/pbkdf2": "^5.5.0",
"@ethersproject/random": "^5.5.1",
"@ethersproject/sha2": "^5.5.0",
"@fuel-ts/wordlists": "^0.0.1"
"@fuel-ts/wordlists": "0.3.0"
}
}
11 changes: 11 additions & 0 deletions packages/providers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2022-03-04)

### Features

- add coin status on coins ([#129](https://github.com/FuelLabs/fuels-ts/issues/129)) ([ed80835](https://github.com/FuelLabs/fuels-ts/commit/ed808352347d5deac0a683d007632cae09df8692))
- add Provider.getCoinsToSpend() ([#93](https://github.com/FuelLabs/fuels-ts/issues/93)) ([4bff768](https://github.com/FuelLabs/fuels-ts/commit/4bff76855b413f10eaffa4d631b5ffb79306e767))
8 changes: 4 additions & 4 deletions packages/providers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/providers",
"version": "0.0.1",
"version": "0.3.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"typedocMain": "./src/index.ts",
Expand All @@ -18,9 +18,9 @@
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/networks": "^5.5.0",
"@ethersproject/sha2": "^5.5.0",
"@fuel-ts/abi-coder": "^0.0.1",
"@fuel-ts/merkle": "^0.0.1",
"@fuel-ts/transactions": "^0.0.1",
"@fuel-ts/abi-coder": "0.3.0",
"@fuel-ts/merkle": "0.3.0",
"@fuel-ts/transactions": "0.3.0",
"graphql": "^15.6.1",
"graphql-request": "^3.6.1",
"graphql-tag": "^2.12.6"
Expand Down
10 changes: 10 additions & 0 deletions packages/signer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2022-03-04)

### Features

- add HDWallet implementation BIP-032 + BIP-044 ([#143](https://github.com/FuelLabs/fuels-ts/issues/143)) ([f7de3dc](https://github.com/FuelLabs/fuels-ts/commit/f7de3dc5d377682d880fa69496eaf93502c43c9e))
6 changes: 3 additions & 3 deletions packages/signer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/signer",
"version": "0.0.1",
"version": "0.3.0",
"description": "Secp256k1 signer for the Fuel Network",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"typedocMain": "./src/index.ts",
Expand All @@ -13,11 +13,11 @@
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/random": "5.5.1",
"@ethersproject/sha2": "^5.5.0",
"@fuel-ts/hasher": "^0.0.1",
"@fuel-ts/hasher": "0.3.0",
"elliptic": "^6.5.4"
},
"devDependencies": {
"@fuel-ts/testcases": "^0.0.1",
"@fuel-ts/testcases": "0.3.0",
"@types/elliptic": "^6.4.14"
}
}
8 changes: 8 additions & 0 deletions packages/sparsemerkle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 0.3.0 (2022-03-04)

**Note:** Version bump only for package @fuel-ts/sparsemerkle
4 changes: 2 additions & 2 deletions packages/sparsemerkle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/sparsemerkle",
"version": "0.0.1",
"version": "0.3.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"typedocMain": "src/index.ts",
Expand All @@ -10,6 +10,6 @@
],
"license": "Apache-2.0",
"dependencies": {
"@fuel-ts/merkle-shared": "^0.0.1"
"@fuel-ts/merkle-shared": "0.3.0"
}
}
Loading

0 comments on commit 7ea01cd

Please sign in to comment.