diff --git a/.changeset/afraid-avocados-compare.md b/.changeset/afraid-avocados-compare.md deleted file mode 100644 index 30424c3d5d1..00000000000 --- a/.changeset/afraid-avocados-compare.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@fuel-ts/account": minor -"@fuel-ts/utils": minor ---- - -Add the DateTime class, which allows for the conversion between common date time formats. diff --git a/.changeset/brown-dingos-grow.md b/.changeset/brown-dingos-grow.md deleted file mode 100644 index 495677fc29b..00000000000 --- a/.changeset/brown-dingos-grow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"create-fuels": patch ---- - -enable auto-install of dependencies in create-fuels diff --git a/.changeset/clever-ravens-pump.md b/.changeset/clever-ravens-pump.md deleted file mode 100644 index a845151cc84..00000000000 --- a/.changeset/clever-ravens-pump.md +++ /dev/null @@ -1,2 +0,0 @@ ---- ---- diff --git a/.changeset/little-timers-melt.md b/.changeset/little-timers-melt.md deleted file mode 100644 index 51f6b97abd3..00000000000 --- a/.changeset/little-timers-melt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"create-fuels": patch ---- - -fix tailwind syntax error in create-fuels template diff --git a/.changeset/old-garlics-warn.md b/.changeset/old-garlics-warn.md deleted file mode 100644 index e4cb4bd6050..00000000000 --- a/.changeset/old-garlics-warn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"create-fuels": patch ---- - -fix `create-fuels` crashing when being run diff --git a/.changeset/pink-geese-return.md b/.changeset/pink-geese-return.md deleted file mode 100644 index a845151cc84..00000000000 --- a/.changeset/pink-geese-return.md +++ /dev/null @@ -1,2 +0,0 @@ ---- ---- diff --git a/.changeset/pink-onions-yawn.md b/.changeset/pink-onions-yawn.md deleted file mode 100644 index 9b140e834db..00000000000 --- a/.changeset/pink-onions-yawn.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@fuel-ts/forc": minor -"@fuel-ts/versions": minor ---- - -Updated `forc` to verson `0.51.1` diff --git a/.changeset/silly-hats-end.md b/.changeset/silly-hats-end.md deleted file mode 100644 index f8688cec68f..00000000000 --- a/.changeset/silly-hats-end.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"@fuel-ts/abi-coder": minor -"@fuel-ts/abi-typegen": minor ---- - -feat: add missing support for the `u256` type - -The TS SDK is now capable of handling `u256` types, and hence capable of interacting (encoding/decoding) with any Sway programs that use the `u256` type. - -**Breaking Change**: - -- The `U64Coder` was removed in favour of the new `BigNumberCoder` which handles the encoding/decoding logic for both `u64` and `u256`. (`abi-coder` package) diff --git a/.changeset/witty-seals-travel.md b/.changeset/witty-seals-travel.md deleted file mode 100644 index 927ce4214e0..00000000000 --- a/.changeset/witty-seals-travel.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@fuel-ts/account": patch -"@fuel-ts/program": patch -"@fuel-ts/utils": patch ---- - -Add method `addTransfer` to `BaseInvocationScope` diff --git a/internal/check-imports/CHANGELOG.md b/internal/check-imports/CHANGELOG.md index 4c3533c42e3..9c230616a4b 100644 --- a/internal/check-imports/CHANGELOG.md +++ b/internal/check-imports/CHANGELOG.md @@ -81,3 +81,5 @@ ## null ## null + +## null diff --git a/packages/abi-coder/CHANGELOG.md b/packages/abi-coder/CHANGELOG.md index 453f778501e..b68652cadc6 100644 --- a/packages/abi-coder/CHANGELOG.md +++ b/packages/abi-coder/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## 0.76.0 + +### Minor Changes + +- ✨ feat: add missing support for the `u256` type + The TS SDK is now capable of handling `u256` types, and hence capable of interacting (encoding/decoding) with any Sway programs that use the `u256` type. + **Breaking Change**: + - The `U64Coder` was removed in favour of the new `BigNumberCoder` which handles the encoding/decoding logic for both `u64` and `u256`. (`abi-coder` package), by [@Dhaiwat10](https://github.com/Dhaiwat10) (See [#1799](https://github.com/FuelLabs/fuels-ts/pull/1799)) + ## 0.75.0 ### Minor Changes diff --git a/packages/abi-coder/package.json b/packages/abi-coder/package.json index c8557612f34..01010fd0e80 100644 --- a/packages/abi-coder/package.json +++ b/packages/abi-coder/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/abi-coder", - "version": "0.75.0", + "version": "0.76.0", "description": "", "author": "Fuel Labs (https://fuel.network/)", "main": "dist/index.js", diff --git a/packages/abi-typegen/CHANGELOG.md b/packages/abi-typegen/CHANGELOG.md index 7bcb1912d63..e432d6c4ae2 100644 --- a/packages/abi-typegen/CHANGELOG.md +++ b/packages/abi-typegen/CHANGELOG.md @@ -1,5 +1,14 @@ # @fuel-ts/abi-typegen +## 0.76.0 + +### Minor Changes + +- ✨ feat: add missing support for the `u256` type + The TS SDK is now capable of handling `u256` types, and hence capable of interacting (encoding/decoding) with any Sway programs that use the `u256` type. + **Breaking Change**: + - The `U64Coder` was removed in favour of the new `BigNumberCoder` which handles the encoding/decoding logic for both `u64` and `u256`. (`abi-coder` package), by [@Dhaiwat10](https://github.com/Dhaiwat10) (See [#1799](https://github.com/FuelLabs/fuels-ts/pull/1799)) + ## 0.75.0 ### Patch Changes diff --git a/packages/abi-typegen/package.json b/packages/abi-typegen/package.json index b00ab361ed6..4b35657c9c8 100644 --- a/packages/abi-typegen/package.json +++ b/packages/abi-typegen/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/abi-typegen", - "version": "0.75.0", + "version": "0.76.0", "description": "Generates Typescript definitions from Sway ABI Json files", "author": "Fuel Labs (https://fuel.network/)", "bin": { diff --git a/packages/account/CHANGELOG.md b/packages/account/CHANGELOG.md index 341f4aae8e5..f328fcbf8c5 100644 --- a/packages/account/CHANGELOG.md +++ b/packages/account/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 0.76.0 + +### Minor Changes + +- Add the DateTime class, which allows for the conversion between common date time formats, by [@petertonysmith94](https://github.com/petertonysmith94) (See [#1627](https://github.com/FuelLabs/fuels-ts/pull/1627)) + +### Patch Changes + +- Add method `addTransfer` to `BaseInvocationScope`, by [@Torres-ssf](https://github.com/Torres-ssf) (See [#1810](https://github.com/FuelLabs/fuels-ts/pull/1810)) + ## 0.75.0 ### Minor Changes diff --git a/packages/account/package.json b/packages/account/package.json index 807e0867acf..fda5ee3f4d6 100644 --- a/packages/account/package.json +++ b/packages/account/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/account", - "version": "0.75.0", + "version": "0.76.0", "description": "", "author": "Fuel Labs (https://fuel.network/)", "main": "dist/index.js", diff --git a/packages/address/CHANGELOG.md b/packages/address/CHANGELOG.md index 272a60ec01a..b297ce799ad 100644 --- a/packages/address/CHANGELOG.md +++ b/packages/address/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 0.76.0 + ## 0.75.0 ### Patch Changes diff --git a/packages/address/package.json b/packages/address/package.json index c5a1e64198c..289eead6f6b 100644 --- a/packages/address/package.json +++ b/packages/address/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/address", - "version": "0.75.0", + "version": "0.76.0", "description": "Utilities for encoding and decoding addresses", "author": "Fuel Labs (https://fuel.network/)", "main": "dist/index.js", diff --git a/packages/contract/CHANGELOG.md b/packages/contract/CHANGELOG.md index e8daeca5554..81053c7473e 100644 --- a/packages/contract/CHANGELOG.md +++ b/packages/contract/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 0.76.0 + ## 0.75.0 ### Patch Changes diff --git a/packages/contract/package.json b/packages/contract/package.json index 4e6e4cbef38..4bb34c20a91 100644 --- a/packages/contract/package.json +++ b/packages/contract/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/contract", - "version": "0.75.0", + "version": "0.76.0", "description": "", "author": "Fuel Labs (https://fuel.network/)", "main": "dist/index.js", diff --git a/packages/create-fuels/CHANGELOG.md b/packages/create-fuels/CHANGELOG.md index 9ee0a826627..444f289a0ec 100644 --- a/packages/create-fuels/CHANGELOG.md +++ b/packages/create-fuels/CHANGELOG.md @@ -1,5 +1,13 @@ # create-fuels +## 0.76.0 + +### Patch Changes + +- enable auto-install of dependencies in create-fuels, by [@Dhaiwat10](https://github.com/Dhaiwat10) (See [#1825](https://github.com/FuelLabs/fuels-ts/pull/1825)) +- 🐞 fix tailwind syntax error in create-fuels template, by [@red-haze-dev](https://github.com/red-haze-dev) (See [#1816](https://github.com/FuelLabs/fuels-ts/pull/1816)) +- 🐞 fix `create-fuels` crashing when being run, by [@Dhaiwat10](https://github.com/Dhaiwat10) (See [#1823](https://github.com/FuelLabs/fuels-ts/pull/1823)) + ## 0.75.0 ### Minor Changes diff --git a/packages/create-fuels/package.json b/packages/create-fuels/package.json index 65a58d0b8a8..df191db63c2 100644 --- a/packages/create-fuels/package.json +++ b/packages/create-fuels/package.json @@ -1,6 +1,6 @@ { "name": "create-fuels", - "version": "0.75.0", + "version": "0.76.0", "description": "", "author": "Fuel Labs (https://fuel.network/)", "bin": { diff --git a/packages/crypto/CHANGELOG.md b/packages/crypto/CHANGELOG.md index d2273defc5e..617bb338115 100644 --- a/packages/crypto/CHANGELOG.md +++ b/packages/crypto/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 0.76.0 + ## 0.75.0 ### Patch Changes diff --git a/packages/crypto/package.json b/packages/crypto/package.json index efe08f7652c..2360072c2e8 100644 --- a/packages/crypto/package.json +++ b/packages/crypto/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/crypto", - "version": "0.75.0", + "version": "0.76.0", "description": "Utilities for encrypting and decrypting data", "author": "Fuel Labs (https://fuel.network/)", "main": "dist/index.js", diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md index 6f35e3c6e0f..c98f16717c5 100644 --- a/packages/errors/CHANGELOG.md +++ b/packages/errors/CHANGELOG.md @@ -1,5 +1,7 @@ # @fuel-ts/errors +## 0.76.0 + ## 0.75.0 ### Minor Changes diff --git a/packages/errors/package.json b/packages/errors/package.json index d4189b90fce..ba353f54695 100644 --- a/packages/errors/package.json +++ b/packages/errors/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/errors", - "version": "0.75.0", + "version": "0.76.0", "description": "Error class and error codes that the fuels-ts library throws", "author": "Fuel Labs (https://fuel.network/)", "main": "dist/index.js", diff --git a/packages/forc/CHANGELOG.md b/packages/forc/CHANGELOG.md index 0621222e3f1..41bc4a5e2eb 100644 --- a/packages/forc/CHANGELOG.md +++ b/packages/forc/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.76.0 + +### Minor Changes + +- Updated `forc` to verson `0.51.1`, by [@nedsalk](https://github.com/nedsalk) (See [#1804](https://github.com/FuelLabs/fuels-ts/pull/1804)) + ## 0.75.0 ## 0.74.0 diff --git a/packages/forc/package.json b/packages/forc/package.json index fa116164c92..d2a9d0bdd4e 100644 --- a/packages/forc/package.json +++ b/packages/forc/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/forc", - "version": "0.75.0", + "version": "0.76.0", "description": "NPM bin wrapper around Fuel `forc`", "author": "Fuel Labs (https://fuel.network/)", "bin": { diff --git a/packages/fuel-core/CHANGELOG.md b/packages/fuel-core/CHANGELOG.md index 53b8f6bc605..c09ef25dd13 100644 --- a/packages/fuel-core/CHANGELOG.md +++ b/packages/fuel-core/CHANGELOG.md @@ -1,5 +1,7 @@ # @fuel-ts/fuel-core +## 0.76.0 + ## 0.75.0 ## 0.74.0 diff --git a/packages/fuel-core/package.json b/packages/fuel-core/package.json index 14d3c0d1a2e..1be1798bebe 100644 --- a/packages/fuel-core/package.json +++ b/packages/fuel-core/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/fuel-core", - "version": "0.75.0", + "version": "0.76.0", "description": "NPM bin wrapper around `fuel-core`", "author": "Fuel Labs (https://fuel.network/)", "bin": { diff --git a/packages/fuels/CHANGELOG.md b/packages/fuels/CHANGELOG.md index dba26158036..7bb60d084dc 100644 --- a/packages/fuels/CHANGELOG.md +++ b/packages/fuels/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 0.76.0 + ## 0.75.0 ### Patch Changes diff --git a/packages/fuels/package.json b/packages/fuels/package.json index a8117ed5d85..b1788e110dc 100644 --- a/packages/fuels/package.json +++ b/packages/fuels/package.json @@ -1,6 +1,6 @@ { "name": "fuels", - "version": "0.75.0", + "version": "0.76.0", "description": "Fuel TS SDK", "author": "Fuel Labs (https://fuel.network/)", "bin": { diff --git a/packages/hasher/CHANGELOG.md b/packages/hasher/CHANGELOG.md index 73dc1d581d1..f7ada126094 100644 --- a/packages/hasher/CHANGELOG.md +++ b/packages/hasher/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 0.76.0 + ## 0.75.0 ### Patch Changes diff --git a/packages/hasher/package.json b/packages/hasher/package.json index d74277b4dd4..51130c40960 100644 --- a/packages/hasher/package.json +++ b/packages/hasher/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/hasher", - "version": "0.75.0", + "version": "0.76.0", "description": "Sha256 hash utility for Fuel", "author": "Fuel Labs (https://fuel.network/)", "main": "dist/index.js", diff --git a/packages/interfaces/CHANGELOG.md b/packages/interfaces/CHANGELOG.md index b2d7170331e..b83267bcc1d 100644 --- a/packages/interfaces/CHANGELOG.md +++ b/packages/interfaces/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 0.76.0 + ## 0.75.0 ### Patch Changes diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index cd9740c3059..1cdecf725a9 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/interfaces", - "version": "0.75.0", + "version": "0.76.0", "description": "", "author": "Fuel Labs (https://fuel.network/)", "main": "dist/index.js", diff --git a/packages/math/CHANGELOG.md b/packages/math/CHANGELOG.md index db41b290efb..946348d709e 100644 --- a/packages/math/CHANGELOG.md +++ b/packages/math/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 0.76.0 + ## 0.75.0 ### Patch Changes diff --git a/packages/math/package.json b/packages/math/package.json index 874679f3f53..4fb1a439f7d 100644 --- a/packages/math/package.json +++ b/packages/math/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/math", - "version": "0.75.0", + "version": "0.76.0", "description": "", "author": "Fuel Labs (https://fuel.network/)", "main": "dist/index.js", diff --git a/packages/merkle/CHANGELOG.md b/packages/merkle/CHANGELOG.md index 1d06eeeb59a..3aed95a4c71 100644 --- a/packages/merkle/CHANGELOG.md +++ b/packages/merkle/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 0.76.0 + ## 0.75.0 ### Patch Changes diff --git a/packages/merkle/package.json b/packages/merkle/package.json index 21f842841b0..eadb5c79eb3 100644 --- a/packages/merkle/package.json +++ b/packages/merkle/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/merkle", - "version": "0.75.0", + "version": "0.76.0", "description": "", "author": "Fuel Labs (https://fuel.network/)", "main": "dist/index.js", diff --git a/packages/program/CHANGELOG.md b/packages/program/CHANGELOG.md index 49b3cbd2256..307f0b22376 100644 --- a/packages/program/CHANGELOG.md +++ b/packages/program/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.76.0 + +### Patch Changes + +- Add method `addTransfer` to `BaseInvocationScope`, by [@Torres-ssf](https://github.com/Torres-ssf) (See [#1810](https://github.com/FuelLabs/fuels-ts/pull/1810)) + ## 0.75.0 ### Minor Changes diff --git a/packages/program/package.json b/packages/program/package.json index b38271d86e3..9e5286f7a51 100644 --- a/packages/program/package.json +++ b/packages/program/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/program", - "version": "0.75.0", + "version": "0.76.0", "description": "", "author": "Fuel Labs (https://fuel.network/)", "main": "dist/index.js", diff --git a/packages/script/CHANGELOG.md b/packages/script/CHANGELOG.md index 7c6f9a038fc..dbe92091c36 100644 --- a/packages/script/CHANGELOG.md +++ b/packages/script/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 0.76.0 + ## 0.75.0 ### Patch Changes diff --git a/packages/script/package.json b/packages/script/package.json index 1ea97fa7b48..62271f78de3 100644 --- a/packages/script/package.json +++ b/packages/script/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/script", - "version": "0.75.0", + "version": "0.76.0", "description": "", "author": "Fuel Labs (https://fuel.network/)", "main": "dist/index.js", diff --git a/packages/transactions/CHANGELOG.md b/packages/transactions/CHANGELOG.md index 2cfafad042e..079b7631aa4 100644 --- a/packages/transactions/CHANGELOG.md +++ b/packages/transactions/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 0.76.0 + ## 0.75.0 ### Patch Changes diff --git a/packages/transactions/package.json b/packages/transactions/package.json index 061c0bb6899..2e75b10e8eb 100644 --- a/packages/transactions/package.json +++ b/packages/transactions/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/transactions", - "version": "0.75.0", + "version": "0.76.0", "description": "", "author": "Fuel Labs (https://fuel.network/)", "main": "dist/index.js", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index d5d8414fb64..763668a3c40 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,15 @@ # @fuel-ts/utils +## 0.76.0 + +### Minor Changes + +- Add the DateTime class, which allows for the conversion between common date time formats, by [@petertonysmith94](https://github.com/petertonysmith94) (See [#1627](https://github.com/FuelLabs/fuels-ts/pull/1627)) + +### Patch Changes + +- Add method `addTransfer` to `BaseInvocationScope`, by [@Torres-ssf](https://github.com/Torres-ssf) (See [#1810](https://github.com/FuelLabs/fuels-ts/pull/1810)) + ## 0.75.0 ### Patch Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index 34d8003eb94..c2ec61ff9f8 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/utils", - "version": "0.75.0", + "version": "0.76.0", "description": "Utilities (and test utilities) collection", "author": "Fuel Labs (https://fuel.network/)", "main": "dist/index.js", diff --git a/packages/versions/CHANGELOG.md b/packages/versions/CHANGELOG.md index 9d5ceafe780..e424c7640cc 100644 --- a/packages/versions/CHANGELOG.md +++ b/packages/versions/CHANGELOG.md @@ -1,5 +1,11 @@ # @fuel-ts/versions +## 0.76.0 + +### Minor Changes + +- Updated `forc` to verson `0.51.1`, by [@nedsalk](https://github.com/nedsalk) (See [#1804](https://github.com/FuelLabs/fuels-ts/pull/1804)) + ## 0.75.0 ### Patch Changes diff --git a/packages/versions/package.json b/packages/versions/package.json index 9cd2e0a20d9..35e6a417c00 100644 --- a/packages/versions/package.json +++ b/packages/versions/package.json @@ -1,6 +1,6 @@ { "name": "@fuel-ts/versions", - "version": "0.75.0", + "version": "0.76.0", "description": "Validates supported versions of the Fuel toolchain", "author": "Fuel Labs (https://fuel.network/)", "bin": { diff --git a/packages/versions/src/lib/getBuiltinVersions.ts b/packages/versions/src/lib/getBuiltinVersions.ts index bac24052663..330d609db46 100644 --- a/packages/versions/src/lib/getBuiltinVersions.ts +++ b/packages/versions/src/lib/getBuiltinVersions.ts @@ -2,6 +2,6 @@ export function getBuiltinVersions() { return { FORC: '0.51.1', FUEL_CORE: '0.22.1', - FUELS: '0.75.0', + FUELS: '0.76.0', }; }