Skip to content

Commit

Permalink
ci(changesets): versioning packages 0.11.0 (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 8, 2022
1 parent abf2884 commit 628c2a9
Show file tree
Hide file tree
Showing 57 changed files with 305 additions and 83 deletions.
5 changes: 0 additions & 5 deletions .changeset/cold-geckos-tickle.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/khaki-fishes-allow.md

This file was deleted.

26 changes: 0 additions & 26 deletions .changeset/little-pillows-tickle.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/moody-weeks-cheer.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/six-cherries-share.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twenty-crabs-carry.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/wild-ants-tie.md

This file was deleted.

17 changes: 17 additions & 0 deletions packages/abi-coder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Change Log

## 0.11.0

### Minor Changes

- [#419](https://github.com/FuelLabs/fuels-ts/pull/419) [`212d51c`](https://github.com/FuelLabs/fuels-ts/commit/212d51c3e6b1eea5c874f435ea8d50320cd870a1) Thanks [@QuinnLee](https://github.com/QuinnLee)! - Update interface to handle array and enum contract arguments

### Patch Changes

- [#437](https://github.com/FuelLabs/fuels-ts/pull/437) [`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - - Fixed linking packages to inside `node_modules` folder
- Remove old Lerna config

* [#418](https://github.com/FuelLabs/fuels-ts/pull/418) [`3cb7332`](https://github.com/FuelLabs/fuels-ts/commit/3cb733212e09d32a21e235c4e46006efd77eca41) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - - Add support to `typeArguments` in JSON ABI (implemented in sway 0.18)
- Created our own ParamType as fuel abi is getting more and more different from ETH abi. -> Inspired by `@ethersproject/abi (v5.6.4) - src.ts/fragments.ts`
- Add support to use Arrays of Structs in contract method arguments - ABI
* Updated dependencies [[`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5)]:
- @fuel-ts/math@0.11.0

## 0.10.0

### Patch Changes
Expand Down
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.10.0",
"version": "0.11.0",
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"typedocMain": "src/index.ts",
Expand Down
7 changes: 7 additions & 0 deletions packages/constants/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 0.11.0

### Patch Changes

- [#437](https://github.com/FuelLabs/fuels-ts/pull/437) [`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - - Fixed linking packages to inside `node_modules` folder
- Remove old Lerna config

## 0.10.0

## 0.9.0
Expand Down
2 changes: 1 addition & 1 deletion packages/constants/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/constants",
"version": "0.10.0",
"version": "0.11.0",
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"typedocMain": "src/index.ts",
Expand Down
31 changes: 31 additions & 0 deletions packages/contract/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Change Log

## 0.11.0

### Minor Changes

- [#419](https://github.com/FuelLabs/fuels-ts/pull/419) [`212d51c`](https://github.com/FuelLabs/fuels-ts/commit/212d51c3e6b1eea5c874f435ea8d50320cd870a1) Thanks [@QuinnLee](https://github.com/QuinnLee)! - Update interface to handle array and enum contract arguments

### Patch Changes

- [#435](https://github.com/FuelLabs/fuels-ts/pull/435) [`bfb7a30`](https://github.com/FuelLabs/fuels-ts/commit/bfb7a30c6c56426bf7c8493cb95396bef40eaa65) Thanks [@QuinnLee](https://github.com/QuinnLee)! - Update test post compiler fix

* [#437](https://github.com/FuelLabs/fuels-ts/pull/437) [`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - - Fixed linking packages to inside `node_modules` folder
- Remove old Lerna config

- [#418](https://github.com/FuelLabs/fuels-ts/pull/418) [`3cb7332`](https://github.com/FuelLabs/fuels-ts/commit/3cb733212e09d32a21e235c4e46006efd77eca41) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - - Add support to `typeArguments` in JSON ABI (implemented in sway 0.18)
- Created our own ParamType as fuel abi is getting more and more different from ETH abi. -> Inspired by `@ethersproject/abi (v5.6.4) - src.ts/fragments.ts`
- Add support to use Arrays of Structs in contract method arguments - ABI

* [#443](https://github.com/FuelLabs/fuels-ts/pull/443) [`abf2884`](https://github.com/FuelLabs/fuels-ts/commit/abf28848a172c8df5e5fef5fa71ffa439f7be56d) Thanks [@camsjams](https://github.com/camsjams)! - Added more tests

* Updated dependencies [[`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5), [`3cb7332`](https://github.com/FuelLabs/fuels-ts/commit/3cb733212e09d32a21e235c4e46006efd77eca41), [`212d51c`](https://github.com/FuelLabs/fuels-ts/commit/212d51c3e6b1eea5c874f435ea8d50320cd870a1)]:
- @fuel-ts/abi-coder@0.11.0
- @fuel-ts/constants@0.11.0
- @fuel-ts/interfaces@0.11.0
- @fuel-ts/keystore@0.11.0
- @fuel-ts/math@0.11.0
- @fuel-ts/merkle@0.11.0
- @fuel-ts/providers@0.11.0
- @fuel-ts/script@0.11.0
- @fuel-ts/transactions@0.11.0
- @fuel-ts/wallet@0.11.0

## 0.10.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/contract",
"version": "0.10.0",
"version": "0.11.0",
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"typedocMain": "src/index.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/example-contract/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 0.11.0

### Patch Changes

- Updated dependencies [[`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5)]:
- fuels@0.11.0
- @fuel-ts/wallet@0.11.0

## 0.10.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion 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.10.0",
"version": "0.11.0",
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"scripts": {
Expand Down
29 changes: 29 additions & 0 deletions packages/fuels/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Change Log

## 0.11.0

### Patch Changes

- [#437](https://github.com/FuelLabs/fuels-ts/pull/437) [`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - - Fixed linking packages to inside `node_modules` folder
- Remove old Lerna config
- Updated dependencies [[`bfb7a30`](https://github.com/FuelLabs/fuels-ts/commit/bfb7a30c6c56426bf7c8493cb95396bef40eaa65), [`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5), [`3cb7332`](https://github.com/FuelLabs/fuels-ts/commit/3cb733212e09d32a21e235c4e46006efd77eca41), [`212d51c`](https://github.com/FuelLabs/fuels-ts/commit/212d51c3e6b1eea5c874f435ea8d50320cd870a1), [`abf2884`](https://github.com/FuelLabs/fuels-ts/commit/abf28848a172c8df5e5fef5fa71ffa439f7be56d)]:
- @fuel-ts/contract@0.11.0
- @fuel-ts/abi-coder@0.11.0
- @fuel-ts/constants@0.11.0
- @fuel-ts/hasher@0.11.0
- @fuel-ts/hdwallet@0.11.0
- @fuel-ts/interfaces@0.11.0
- @fuel-ts/keystore@0.11.0
- @fuel-ts/math@0.11.0
- @fuel-ts/merkle@0.11.0
- @fuel-ts/merkle-shared@0.11.0
- @fuel-ts/merklesum@0.11.0
- @fuel-ts/mnemonic@0.11.0
- @fuel-ts/providers@0.11.0
- @fuel-ts/signer@0.11.0
- @fuel-ts/sparsemerkle@0.11.0
- @fuel-ts/transactions@0.11.0
- @fuel-ts/wallet@0.11.0
- @fuel-ts/wallet-manager@0.11.0
- @fuel-ts/wordlists@0.11.0
- @fuel-ts/predicate@0.11.0
- @fuel-ts/testcases@0.11.0

## 0.10.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/fuels/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fuels",
"version": "0.10.0",
"version": "0.11.0",
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"typedocMain": "src/index.ts",
Expand Down
11 changes: 11 additions & 0 deletions packages/hasher/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## 0.11.0

### Patch Changes

- [#437](https://github.com/FuelLabs/fuels-ts/pull/437) [`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - - Fixed linking packages to inside `node_modules` folder
- Remove old Lerna config
- Updated dependencies [[`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5)]:
- @fuel-ts/constants@0.11.0
- @fuel-ts/providers@0.11.0
- @fuel-ts/transactions@0.11.0

## 0.10.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/hasher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/hasher",
"version": "0.10.0",
"version": "0.11.0",
"description": "Sha256 hash utility for Fuel",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"typedocMain": "./src/index.ts",
Expand Down
11 changes: 11 additions & 0 deletions packages/hdwallet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## 0.11.0

### Patch Changes

- [#437](https://github.com/FuelLabs/fuels-ts/pull/437) [`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - - Fixed linking packages to inside `node_modules` folder
- Remove old Lerna config
- Updated dependencies [[`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5)]:
- @fuel-ts/math@0.11.0
- @fuel-ts/mnemonic@0.11.0
- @fuel-ts/signer@0.11.0

## 0.10.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/hdwallet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/hdwallet",
"version": "0.10.0",
"version": "0.11.0",
"description": "The Hierarchal Desterministic (HD) Wallet",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"typedocMain": "./src/index.ts",
Expand Down
7 changes: 7 additions & 0 deletions packages/interfaces/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 0.11.0

### Patch Changes

- [#437](https://github.com/FuelLabs/fuels-ts/pull/437) [`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - - Fixed linking packages to inside `node_modules` folder
- Remove old Lerna config

## 0.10.0

## 0.9.0
Expand Down
2 changes: 1 addition & 1 deletion packages/interfaces/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/interfaces",
"version": "0.10.0",
"version": "0.11.0",
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"typedocMain": "src/index.ts",
Expand Down
7 changes: 7 additions & 0 deletions packages/keystore/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 0.11.0

### Patch Changes

- [#437](https://github.com/FuelLabs/fuels-ts/pull/437) [`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - - Fixed linking packages to inside `node_modules` folder
- Remove old Lerna config

## 0.10.0

## 0.9.0
Expand Down
2 changes: 1 addition & 1 deletion packages/keystore/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/keystore",
"version": "0.10.0",
"version": "0.11.0",
"description": "Utilities for encrypting and decrypting data",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"typedocMain": "./src/index.ts",
Expand Down
7 changes: 7 additions & 0 deletions packages/math/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 0.11.0

### Patch Changes

- [#437](https://github.com/FuelLabs/fuels-ts/pull/437) [`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - - Fixed linking packages to inside `node_modules` folder
- Remove old Lerna config

## 0.10.0

## 0.9.0
Expand Down
2 changes: 1 addition & 1 deletion packages/math/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/math",
"version": "0.10.0",
"version": "0.11.0",
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"typedocMain": "src/index.ts",
Expand Down
9 changes: 9 additions & 0 deletions packages/merkle-shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 0.11.0

### Patch Changes

- [#437](https://github.com/FuelLabs/fuels-ts/pull/437) [`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - - Fixed linking packages to inside `node_modules` folder
- Remove old Lerna config
- Updated dependencies [[`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5)]:
- @fuel-ts/math@0.11.0

## 0.10.0

### Patch Changes
Expand Down
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.10.0",
"version": "0.11.0",
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"main": "src/index.ts",
Expand Down
9 changes: 9 additions & 0 deletions packages/merkle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 0.11.0

### Patch Changes

- [#437](https://github.com/FuelLabs/fuels-ts/pull/437) [`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5) Thanks [@LuizAsFight](https://github.com/LuizAsFight)! - - Fixed linking packages to inside `node_modules` folder
- Remove old Lerna config
- Updated dependencies [[`b2f1c66`](https://github.com/FuelLabs/fuels-ts/commit/b2f1c665b8d75f635edb4b75691abc9ebf6850b5)]:
- @fuel-ts/merkle-shared@0.11.0

## 0.10.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/merkle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/merkle",
"version": "0.10.0",
"version": "0.11.0",
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"typedocMain": "src/index.ts",
Expand Down

0 comments on commit 628c2a9

Please sign in to comment.