Skip to content

Commit d3d72b8

Browse files
authored
v0.5.0 (#202)
1 parent 5880391 commit d3d72b8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+258
-60
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/FuelLabs/fuels-ts/compare/v0.4.0...v0.5.0) (2022-03-30)
7+
8+
9+
### Bug Fixes
10+
11+
* set json fragment name optional ([#200](https://github.com/FuelLabs/fuels-ts/issues/200)) ([1714d40](https://github.com/FuelLabs/fuels-ts/commit/1714d40c836992d826e377c013edcb906761ef76))
12+
13+
14+
### Features
15+
16+
* add hdwallet and mnemonic features to wallet ([#196](https://github.com/FuelLabs/fuels-ts/issues/196)) ([9a71ed8](https://github.com/FuelLabs/fuels-ts/commit/9a71ed803f56b301253467adb0d5ecb85f926e9c))
17+
* add types on contract factory generated code ([#201](https://github.com/FuelLabs/fuels-ts/issues/201)) ([5880391](https://github.com/FuelLabs/fuels-ts/commit/5880391223a32fc20b6235d2b0c66f467bf7f2fe))
18+
* forward amount and assetId on contract call ([#199](https://github.com/FuelLabs/fuels-ts/issues/199)) ([9640d58](https://github.com/FuelLabs/fuels-ts/commit/9640d58e2bdbc6815cbf7aad9be0d19eee0276d5))
19+
20+
21+
22+
23+
624
# [0.4.0](https://github.com/FuelLabs/fuels-ts/compare/v0.3.0...v0.4.0) (2022-03-13)
725

826

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "0.4.0"
5+
"version": "0.5.0"
66
}

packages/abi-coder/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/FuelLabs/fuels-ts/compare/v0.4.0...v0.5.0) (2022-03-30)
7+
8+
9+
### Bug Fixes
10+
11+
* set json fragment name optional ([#200](https://github.com/FuelLabs/fuels-ts/issues/200)) ([1714d40](https://github.com/FuelLabs/fuels-ts/commit/1714d40c836992d826e377c013edcb906761ef76))
12+
13+
14+
### Features
15+
16+
* add types on contract factory generated code ([#201](https://github.com/FuelLabs/fuels-ts/issues/201)) ([5880391](https://github.com/FuelLabs/fuels-ts/commit/5880391223a32fc20b6235d2b0c66f467bf7f2fe))
17+
18+
19+
20+
21+
622
# [0.4.0](https://github.com/FuelLabs/fuels-ts/compare/v0.3.0...v0.4.0) (2022-03-13)
723

824

packages/abi-coder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ts/abi-coder",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "",
55
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
66
"typedocMain": "src/index.ts",

packages/constants/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/FuelLabs/fuels-ts/compare/v0.4.0...v0.5.0) (2022-03-30)
7+
8+
**Note:** Version bump only for package @fuel-ts/constants
9+
10+
11+
12+
13+
614
# [0.4.0](https://github.com/FuelLabs/fuels-ts/compare/v0.3.0...v0.4.0) (2022-03-13)
715

816
**Note:** Version bump only for package @fuel-ts/constants

packages/constants/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ts/constants",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "",
55
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
66
"typedocMain": "src/index.ts",

packages/contract/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/FuelLabs/fuels-ts/compare/v0.4.0...v0.5.0) (2022-03-30)
7+
8+
9+
### Features
10+
11+
* forward amount and assetId on contract call ([#199](https://github.com/FuelLabs/fuels-ts/issues/199)) ([9640d58](https://github.com/FuelLabs/fuels-ts/commit/9640d58e2bdbc6815cbf7aad9be0d19eee0276d5))
12+
13+
14+
15+
16+
617
# [0.4.0](https://github.com/FuelLabs/fuels-ts/compare/v0.3.0...v0.4.0) (2022-03-13)
718

819

packages/contract/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ts/contract",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "",
55
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
66
"typedocMain": "src/index.ts",
@@ -18,11 +18,11 @@
1818
"@ethersproject/logger": "^5.5.0",
1919
"@ethersproject/random": "^5.5.1",
2020
"@ethersproject/sha2": "^5.6.0",
21-
"@fuel-ts/abi-coder": "^0.4.0",
22-
"@fuel-ts/constants": "^0.4.0",
23-
"@fuel-ts/interfaces": "^0.4.0",
24-
"@fuel-ts/merkle": "^0.4.0",
25-
"@fuel-ts/providers": "^0.4.0",
26-
"@fuel-ts/wallet": "^0.4.0"
21+
"@fuel-ts/abi-coder": "^0.5.0",
22+
"@fuel-ts/constants": "^0.5.0",
23+
"@fuel-ts/interfaces": "^0.5.0",
24+
"@fuel-ts/merkle": "^0.5.0",
25+
"@fuel-ts/providers": "^0.5.0",
26+
"@fuel-ts/wallet": "^0.5.0"
2727
}
2828
}

packages/example-contract/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/FuelLabs/fuels-ts/compare/v0.4.0...v0.5.0) (2022-03-30)
7+
8+
**Note:** Version bump only for package @fuel-ts/example-contract
9+
10+
11+
12+
13+
614
# [0.4.0](https://github.com/FuelLabs/fuels-ts/compare/v0.3.0...v0.4.0) (2022-03-13)
715

816

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ts/example-contract",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "",
55
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
66
"scripts": {
@@ -9,12 +9,12 @@
99
"license": "Apache-2.0",
1010
"dependencies": {
1111
"@ethersproject/bytes": "^5.5.0",
12-
"@fuel-ts/wallet": "^0.4.0",
13-
"fuels": "^0.4.0"
12+
"@fuel-ts/wallet": "^0.5.0",
13+
"fuels": "^0.5.0"
1414
},
1515
"devDependencies": {
1616
"prettier": "^2.4.1",
1717
"typechain": "^6.0.2",
18-
"typechain-target-fuels": "^0.4.0"
18+
"typechain-target-fuels": "^0.5.0"
1919
}
2020
}

0 commit comments

Comments
 (0)