Skip to content

Commit da7dcc3

Browse files
ci(changesets): versioning packages v0.15 (#486)
1 parent 63583aa commit da7dcc3

Some content is hidden

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

62 files changed

+343
-91
lines changed

.changeset/brown-snakes-brush.md

-5
This file was deleted.

.changeset/fuzzy-pumas-fail.md

-6
This file was deleted.

.changeset/kind-tips-tell.md

-2
This file was deleted.

.changeset/shiny-ligers-eat.md

-7
This file was deleted.

.changeset/short-cobras-remain.md

-5
This file was deleted.

.changeset/silent-beans-smell.md

-26
This file was deleted.

.changeset/thirty-planes-laugh.md

-8
This file was deleted.

.changeset/witty-clouds-buy.md

-5
This file was deleted.

packages/abi-coder/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Change Log
22

3+
## 0.15.0
4+
5+
### Minor Changes
6+
7+
- [#495](https://github.com/FuelLabs/fuels-ts/pull/495) [`f3c7273`](https://github.com/FuelLabs/fuels-ts/commit/f3c7273d946979e628b178ba808b8fc1598105bb) Thanks [@luizstacio](https://github.com/luizstacio)! - Fix exports and imports
8+
9+
### Patch Changes
10+
11+
- [#497](https://github.com/FuelLabs/fuels-ts/pull/497) [`63583aa`](https://github.com/FuelLabs/fuels-ts/commit/63583aa6e8b5b5417bdc0c0ae3bc15eec7735e43) Thanks [@camsjams](https://github.com/camsjams)! - Added vec support
12+
13+
- [#468](https://github.com/FuelLabs/fuels-ts/pull/468) [`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - Refactor to use bn.js instead of bigint.
14+
15+
- Updated dependencies [[`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56)]:
16+
- @fuel-ts/math@0.15.0
17+
318
## 0.14.0
419

520
### Patch Changes

packages/abi-coder/package.json

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

packages/address/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Change Log
22

3+
## 0.15.0
4+
5+
### Minor Changes
6+
7+
- [#502](https://github.com/FuelLabs/fuels-ts/pull/502) [`5828934`](https://github.com/FuelLabs/fuels-ts/commit/5828934ccd96cec82fc0cece0f207dafaee5b89a) Thanks [@luizstacio](https://github.com/luizstacio)! - Add toJSON for parsing values to bech32 when using JSON.stringify with Address object
8+
9+
### Patch Changes
10+
11+
- [#468](https://github.com/FuelLabs/fuels-ts/pull/468) [`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - Refactor to use bn.js instead of bigint.
12+
13+
- Updated dependencies [[`5828934`](https://github.com/FuelLabs/fuels-ts/commit/5828934ccd96cec82fc0cece0f207dafaee5b89a), [`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56)]:
14+
- @fuel-ts/interfaces@0.15.0
15+
- @fuel-ts/constants@0.15.0
16+
- @fuel-ts/keystore@0.15.0
17+
318
## 0.14.0
419

520
### Patch Changes

packages/address/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ts/address",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "Utilities for encoding and decoding addresses",
55
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
66
"typedocMain": "./src/index.ts",

packages/constants/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 0.15.0
4+
5+
### Patch Changes
6+
7+
- [#468](https://github.com/FuelLabs/fuels-ts/pull/468) [`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - Refactor to use bn.js instead of bigint.
8+
39
## 0.14.0
410

511
## 0.13.0

packages/constants/package.json

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

packages/contract/CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Change Log
22

3+
## 0.15.0
4+
5+
### Minor Changes
6+
7+
- [#501](https://github.com/FuelLabs/fuels-ts/pull/501) [`60e42d5`](https://github.com/FuelLabs/fuels-ts/commit/60e42d5f864425d5cd910e6d9eb243bd377da784) Thanks [@luizstacio](https://github.com/luizstacio)! - Add exports on contract package
8+
9+
- [#503](https://github.com/FuelLabs/fuels-ts/pull/503) [`7d01caa`](https://github.com/FuelLabs/fuels-ts/commit/7d01caa55b947ca2f14efef217c5f6b377256e85) Thanks [@luizstacio](https://github.com/luizstacio)! - Change contract get to not fund transaction by default
10+
11+
- [#495](https://github.com/FuelLabs/fuels-ts/pull/495) [`f3c7273`](https://github.com/FuelLabs/fuels-ts/commit/f3c7273d946979e628b178ba808b8fc1598105bb) Thanks [@luizstacio](https://github.com/luizstacio)! - Fix exports and imports
12+
13+
### Patch Changes
14+
15+
- [#497](https://github.com/FuelLabs/fuels-ts/pull/497) [`63583aa`](https://github.com/FuelLabs/fuels-ts/commit/63583aa6e8b5b5417bdc0c0ae3bc15eec7735e43) Thanks [@camsjams](https://github.com/camsjams)! - Added vec support
16+
17+
- [#468](https://github.com/FuelLabs/fuels-ts/pull/468) [`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - Refactor to use bn.js instead of bigint.
18+
19+
- Updated dependencies [[`5828934`](https://github.com/FuelLabs/fuels-ts/commit/5828934ccd96cec82fc0cece0f207dafaee5b89a), [`63583aa`](https://github.com/FuelLabs/fuels-ts/commit/63583aa6e8b5b5417bdc0c0ae3bc15eec7735e43), [`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56), [`f3c7273`](https://github.com/FuelLabs/fuels-ts/commit/f3c7273d946979e628b178ba808b8fc1598105bb), [`9d0ad53`](https://github.com/FuelLabs/fuels-ts/commit/9d0ad5392b2dae83b13041999435c08e07e935a3)]:
20+
- @fuel-ts/address@0.15.0
21+
- @fuel-ts/interfaces@0.15.0
22+
- @fuel-ts/abi-coder@0.15.0
23+
- @fuel-ts/providers@0.15.0
24+
- @fuel-ts/constants@0.15.0
25+
- @fuel-ts/math@0.15.0
26+
- @fuel-ts/merkle@0.15.0
27+
- @fuel-ts/script@0.15.0
28+
- @fuel-ts/sparsemerkle@0.15.0
29+
- @fuel-ts/transactions@0.15.0
30+
- @fuel-ts/wallet@0.15.0
31+
- @fuel-ts/keystore@0.15.0
32+
333
## 0.14.0
434

535
### Patch Changes

packages/contract/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ts/contract",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "",
55
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
66
"typedocMain": "src/index.ts",

packages/example-contract/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## 0.15.0
4+
5+
### Patch Changes
6+
7+
- [#468](https://github.com/FuelLabs/fuels-ts/pull/468) [`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - Refactor to use bn.js instead of bigint.
8+
9+
- Updated dependencies [[`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56)]:
10+
11+
- @fuel-ts/wallet@0.15.0
12+
313
## 0.14.0
414

515
### Patch Changes

packages/example-contract/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ts/example-contract",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "",
55
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
66
"scripts": {

packages/fuelchain/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# fuelchain
22

3+
## 0.15.0
4+
35
## 0.14.0
46

57
### Minor Changes

packages/fuelchain/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fuelchain",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "🔌 FuelChain is a fork from TypeChain",
55
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
66
"license": "Apache-2.0",

packages/fuels/CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Change Log
22

3+
## 0.15.0
4+
5+
### Patch Changes
6+
7+
- [#468](https://github.com/FuelLabs/fuels-ts/pull/468) [`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - Refactor to use bn.js instead of bigint.
8+
9+
- Updated dependencies [[`60e42d5`](https://github.com/FuelLabs/fuels-ts/commit/60e42d5f864425d5cd910e6d9eb243bd377da784), [`5828934`](https://github.com/FuelLabs/fuels-ts/commit/5828934ccd96cec82fc0cece0f207dafaee5b89a), [`63583aa`](https://github.com/FuelLabs/fuels-ts/commit/63583aa6e8b5b5417bdc0c0ae3bc15eec7735e43), [`7d01caa`](https://github.com/FuelLabs/fuels-ts/commit/7d01caa55b947ca2f14efef217c5f6b377256e85), [`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56), [`f3c7273`](https://github.com/FuelLabs/fuels-ts/commit/f3c7273d946979e628b178ba808b8fc1598105bb), [`9d0ad53`](https://github.com/FuelLabs/fuels-ts/commit/9d0ad5392b2dae83b13041999435c08e07e935a3)]:
10+
- @fuel-ts/contract@0.15.0
11+
- @fuel-ts/address@0.15.0
12+
- @fuel-ts/interfaces@0.15.0
13+
- @fuel-ts/abi-coder@0.15.0
14+
- @fuel-ts/providers@0.15.0
15+
- @fuel-ts/constants@0.15.0
16+
- @fuel-ts/hasher@0.15.0
17+
- @fuel-ts/hdwallet@0.15.0
18+
- @fuel-ts/math@0.15.0
19+
- @fuel-ts/merkle@0.15.0
20+
- @fuel-ts/merkle-shared@0.15.0
21+
- @fuel-ts/merklesum@0.15.0
22+
- @fuel-ts/predicate@0.15.0
23+
- @fuel-ts/signer@0.15.0
24+
- @fuel-ts/sparsemerkle@0.15.0
25+
- @fuel-ts/testcases@0.15.0
26+
- @fuel-ts/transactions@0.15.0
27+
- @fuel-ts/wallet@0.15.0
28+
- @fuel-ts/wallet-manager@0.15.0
29+
- @fuel-ts/keystore@0.15.0
30+
- @fuel-ts/mnemonic@0.15.0
31+
- @fuel-ts/wordlists@0.15.0
32+
333
## 0.14.0
434

535
### Patch Changes

packages/fuels/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fuels",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "",
55
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
66
"typedocMain": "src/index.ts",

packages/hasher/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change Log
22

3+
## 0.15.0
4+
5+
### Patch Changes
6+
7+
- [#468](https://github.com/FuelLabs/fuels-ts/pull/468) [`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - Refactor to use bn.js instead of bigint.
8+
9+
- Updated dependencies [[`63583aa`](https://github.com/FuelLabs/fuels-ts/commit/63583aa6e8b5b5417bdc0c0ae3bc15eec7735e43), [`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56), [`f3c7273`](https://github.com/FuelLabs/fuels-ts/commit/f3c7273d946979e628b178ba808b8fc1598105bb), [`9d0ad53`](https://github.com/FuelLabs/fuels-ts/commit/9d0ad5392b2dae83b13041999435c08e07e935a3)]:
10+
- @fuel-ts/providers@0.15.0
11+
- @fuel-ts/constants@0.15.0
12+
- @fuel-ts/math@0.15.0
13+
- @fuel-ts/transactions@0.15.0
14+
315
## 0.14.0
416

517
### Patch Changes

packages/hasher/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ts/hasher",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "Sha256 hash utility for Fuel",
55
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
66
"typedocMain": "./src/index.ts",

packages/hdwallet/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change Log
22

3+
## 0.15.0
4+
5+
### Patch Changes
6+
7+
- [#468](https://github.com/FuelLabs/fuels-ts/pull/468) [`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - Refactor to use bn.js instead of bigint.
8+
9+
- Updated dependencies [[`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56)]:
10+
- @fuel-ts/math@0.15.0
11+
- @fuel-ts/signer@0.15.0
12+
- @fuel-ts/mnemonic@0.15.0
13+
314
## 0.14.0
415

516
### Patch Changes

packages/hdwallet/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ts/hdwallet",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "The Hierarchal Desterministic (HD) Wallet",
55
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
66
"typedocMain": "./src/index.ts",

packages/interfaces/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## 0.15.0
4+
5+
### Minor Changes
6+
7+
- [#502](https://github.com/FuelLabs/fuels-ts/pull/502) [`5828934`](https://github.com/FuelLabs/fuels-ts/commit/5828934ccd96cec82fc0cece0f207dafaee5b89a) Thanks [@luizstacio](https://github.com/luizstacio)! - Add toJSON for parsing values to bech32 when using JSON.stringify with Address object
8+
9+
### Patch Changes
10+
11+
- [#468](https://github.com/FuelLabs/fuels-ts/pull/468) [`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - Refactor to use bn.js instead of bigint.
12+
313
## 0.14.0
414

515
## 0.13.0

packages/interfaces/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ts/interfaces",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "",
55
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
66
"typedocMain": "src/index.ts",

packages/keystore/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Change Log
22

3+
## 0.15.0
4+
35
## 0.14.0
46

57
## 0.13.0

packages/keystore/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ts/keystore",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "Utilities for encrypting and decrypting data",
55
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
66
"typedocMain": "./src/index.ts",

packages/math/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 0.15.0
4+
5+
### Patch Changes
6+
7+
- [#468](https://github.com/FuelLabs/fuels-ts/pull/468) [`7ad3d79`](https://github.com/FuelLabs/fuels-ts/commit/7ad3d79bf7a1db766912a7b3d52e4fa2e550af56) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - Refactor to use bn.js instead of bigint.
8+
39
## 0.14.0
410

511
## 0.13.0

packages/math/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fuel-ts/math",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "",
55
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
66
"typedocMain": "src/index.ts",

0 commit comments

Comments
 (0)